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 <noreply@anthropic.com>
This commit is contained in:
parent
45caa3ac65
commit
3bc6e88249
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue