parent
5a728fc404
commit
b69b7c3cf6
1 changed files with 12 additions and 6 deletions
|
|
@ -6,14 +6,20 @@ jobs:
|
|||
- name: Run something in Alpine
|
||||
uses: docker://alpine:3.20
|
||||
with:
|
||||
entrypoint: /bin/sh
|
||||
args: |
|
||||
echo "Hello from inside Alpine"
|
||||
distro=$(cat /etc/os-release)
|
||||
echo Distro: $distro
|
||||
-c '
|
||||
echo "Hello from inside Alpine"
|
||||
distro=$(cat /etc/os-release)
|
||||
echo Distro: $distro
|
||||
'
|
||||
- name: Run something in ArchBtw
|
||||
uses: docker://archlinux:base
|
||||
with:
|
||||
entrypoint: /bin/sh
|
||||
args: |
|
||||
echo "Hello from inside ArchBtw"
|
||||
distro=$(cat /etc/os-release)
|
||||
echo Distro: $distro
|
||||
-c '
|
||||
echo "Hello from inside ArchBtw"
|
||||
distro=$(cat /etc/os-release)
|
||||
echo Distro: $distro
|
||||
'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue