From 3bc6e8824900fb1baa0b55e87f348d2f561eac4d Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sat, 8 Aug 2026 21:52:46 +0200 Subject: [PATCH] ci: provision bash for the forgejo-release action Run 11 built and uploaded everything; only the release step died on alpine's missing bash. Co-Authored-By: Claude Fable 5 --- .forgejo/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 2fe0e51..913d261 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -22,9 +22,10 @@ jobs: runs-on: pmos timeout-minutes: 420 steps: - # actions/checkout & friends are Node actions; bare alpine has no node + # actions/checkout & friends are Node actions; bare alpine has no node. + # bash: required by the forgejo-release composite action. - name: Provision job container - run: apk add -q nodejs git + run: apk add -q nodejs git bash - name: Checkout uses: actions/checkout@v4