more distros
Some checks failed
/ test (push) Failing after 18s

This commit is contained in:
Waylon Walker 2025-08-28 14:41:14 -05:00
parent b69b7c3cf6
commit dc98b622d9

View file

@ -23,3 +23,33 @@ jobs:
distro=$(cat /etc/os-release)
echo Distro: $distro
'
- name: Run something in Ubuntu
uses: docker://ubuntu:latest
with:
entrypoint: /bin/sh
args: |
-c '
echo "Hello from inside Ubuntu"
distro=$(cat /etc/os-release)
echo Distro: $distro
'
- name: Run something on Busybox
uses: docker://busybox
with:
entrypoint: /bin/sh
args: |
-c '
echo "Hello from inside Busybox"
distro=$(cat /etc/os-release)
echo Distro: $distro
'
- name: Run something on Rocky
uses: docker://rockylinux:latest
with:
entrypoint: /bin/sh
args: |
-c '
echo "Hello from inside Rocky"
distro=$(cat /etc/os-release)
echo Distro: $distro
'