Browse Source

Fix if check (#129)

pull/130/head
Opeyemi 2 years ago committed by GitHub
parent
commit
f4f10abe5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/release.yml

4
.github/workflows/release.yml

@ -151,9 +151,9 @@ jobs:
steps: steps:
- name: Check if any job failed - name: Check if any job failed
if: | if: |
github.ref == 'refs/heads/main' (github.ref == 'refs/heads/main'
|| github.ref == 'refs/heads/rc' || github.ref == 'refs/heads/rc'
|| github.ref == 'refs/heads/hotfix' || github.ref == 'refs/heads/hotfix')
&& contains(needs.*.result, 'failure') && contains(needs.*.result, 'failure')
run: exit 1 run: exit 1

Loading…
Cancel
Save