From b2a158bf32645b831d8390d102455b79d0695b62 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Tue, 27 May 2025 17:31:28 +0100 Subject: [PATCH] ci/actions/build: specify shell --- .github/actions/build/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index e6cd4c54..21c0115e 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -32,6 +32,7 @@ runs: attr: ${{ inputs.attribute }} attrs: ${{ inputs.attributes || '[]' }} groups: ${{ inputs.attributeGroups || '{}' }} + shell: bash run: | set -Eeu builds=$( @@ -51,12 +52,12 @@ runs: ) echo "builds=$builds" >> "$GITHUB_OUTPUT" - name: Build - if: inputs.attributeGroups env: builds_json: ${{ steps.builds.outputs.builds }} keep_going_flag: ${{ inputs.keepGoing && '--keep-going' || '' }} abort_on_warn_flag: ${{ inputs.abortOnWarn && '--abort-on-warn' || '' }} fail_fast: ${{ inputs.keepGoing && '' || true }} + shell: bash run: | ok=0 error=0