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 6900af1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/abi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs:
name: abi-test
path: abi-test
- name: fail
if: >
${{ env.ABI_BRANCH != github.ref_name &&
(steps.reference.outcome == 'failure' ||
steps.compare.outcome == 'failure') }}
if: >-
${{
env.ABI_BRANCH != github.ref_name &&
(steps.reference.outcome == 'failure' ||
steps.compare.outcome == 'failure')
}}
run: false

0 comments on commit 6900af1

Please sign in to comment.