This commit is contained in:
parent
2f125362df
commit
baf9f2a49a
1 changed files with 8 additions and 2 deletions
|
|
@ -9,8 +9,14 @@ jobs:
|
|||
echo "Hello from host: $distro"
|
||||
- name: Run something in Alpine
|
||||
uses: docker://alpine:3.20
|
||||
run: echo "Hello from inside Alpine"
|
||||
with:
|
||||
entrypoint: ["/bin/sh", "-c"]
|
||||
args: |
|
||||
echo "Hello from inside Alpine"
|
||||
- name: Run something in ArchBtw
|
||||
uses: docker://archlinux:base
|
||||
run: echo "Hello from inside ArchBtw"
|
||||
with:
|
||||
entrypoint: ["/bin/sh", "-c"]
|
||||
args: |
|
||||
echo "Hello from inside ArchBtw"
|
||||
- run: echo "Back on the host runner again"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue