From b69b7c3cf619ce80004b4ea46181d7d764f314e2 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Thu, 28 Aug 2025 12:55:34 -0500 Subject: [PATCH] sh script --- .forgejo/workflows/images-per-step.yaml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/images-per-step.yaml b/.forgejo/workflows/images-per-step.yaml index 2db22a3..10dad65 100644 --- a/.forgejo/workflows/images-per-step.yaml +++ b/.forgejo/workflows/images-per-step.yaml @@ -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 + '