This commit is contained in:
parent
597e1b0a68
commit
69596e1794
1 changed files with 19 additions and 0 deletions
19
.forgejo/workflows/images-per-step.yaml
Normal file
19
.forgejo/workflows/images-per-step.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: 'distro=$(. /etc/os-release && echo $PRETTY_NAME) echo "Hello from inside $distro"'
|
||||
- name: Run something in Alpine
|
||||
uses: docker://alpine:3.20
|
||||
with:
|
||||
args: |
|
||||
export distro=$(. /etc/os-release && echo $PRETTY_NAME)
|
||||
echo "Hello from inside $distro"
|
||||
- name: Run something in ArchBtw
|
||||
uses: docker://archlinux:base
|
||||
with:
|
||||
args: |
|
||||
export distro=$(. /etc/os-release && echo $PRETTY_NAME)
|
||||
echo "Hello from inside $distro"
|
||||
- run: echo "Back on the host runner again"
|
||||
Loading…
Add table
Add a link
Reference in a new issue