Add shell to step

This commit is contained in:
Daniel A. Wozniak 2025-02-03 15:05:37 -07:00 committed by Daniel Wozniak
parent df5997c400
commit 15cd75bdef

View file

@ -35,12 +35,12 @@ jobs:
name: Set the ${{ github.event.workflow.name }} Pipeline Exit Status name: Set the ${{ github.event.workflow.name }} Pipeline Exit Status
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.run_attempt >= 5 }} if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.run_attempt >= 5 }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
shell: bash
needs: needs:
- show-context - show-context
- on-failure - on-failure
steps: steps:
- run: - shell: bash
run:
if [ "${{ github.event.workflow_run.conclusion }}" != "success" ]; then if [ "${{ github.event.workflow_run.conclusion }}" != "success" ]; then
exit 1; exit 1;
else else