Skip to content

Commit

Permalink
Prevent the Portability Workflow from Failing Incorrectly (#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingDepot authored Jul 18, 2024
1 parent efd0661 commit 332baee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
merge-multiple: true
- name: Process failures
id: process-failures
run: test -f all-failures/failure && echo 'hasFails=true' >> "$GITHUB_OUTPUT"
run: (test -f all-failures/failure && echo 'hasFails=true' || echo 'hasFails=false') >> "$GITHUB_OUTPUT"
- if: ${{ steps.process-failures.outputs.hasFails == 'true' }}
uses: actions/github-script@v7
with:
Expand Down

0 comments on commit 332baee

Please sign in to comment.