From dc98b622d9f72bfb12866e6f22aaace8c728accf Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Thu, 28 Aug 2025 14:41:14 -0500 Subject: [PATCH] more distros --- .forgejo/workflows/images-per-step.yaml | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) 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 + '