diff --git a/.forgejo/workflows/images-per-step.yaml b/.forgejo/workflows/images-per-step.yaml index 10dad65..07fd644 100644 --- a/.forgejo/workflows/images-per-step.yaml +++ b/.forgejo/workflows/images-per-step.yaml @@ -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 + '