sh script
All checks were successful
/ test (push) Successful in 21s

This commit is contained in:
Waylon Walker 2025-08-28 12:55:34 -05:00
parent 5a728fc404
commit b69b7c3cf6

View file

@ -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
'