Skip to content

Commit

Permalink
fixup! GitHub workflows: abi: error if reference ABI can't be downloaded
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilck committed Feb 10, 2024
1 parent 49b1f77 commit 787cc77
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
path: abi-test
- name: fail
if: >
${{ env.ABI_BRANCH != github.ref_name &&
(steps.reference.outcome == 'failure' ||
steps.compare.outcome == 'failure') }}
${{
env.ABI_BRANCH != github.ref_name &&
(steps.reference.outcome == 'failure' ||
steps.compare.outcome == 'failure')
}}
run: false

0 comments on commit 787cc77

Please sign in to comment.