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