We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb45cb0 commit c7fbd95Copy full SHA for c7fbd95
.github/workflows/keystore.yml
@@ -93,10 +93,8 @@ jobs:
93
if: always()
94
steps:
95
- name: Fail if any job failed
96
- if: needs.changes.outputs.keystore-src == 'true'
97
- run: |
98
- if [[ "${{ needs.run-tests.outcome }}" != "success" || \
99
- "${{ needs.build-race-tests.outcome }}" != "success" ]]; then
100
- exit 1
101
- fi
+ if: needs.changes.outputs.keystore-src == 'true' &&
+ (needs.run-tests.outcome != 'success' ||
+ needs.build-race-tests.outcome != 'success')
+ run: exit 1
102
0 commit comments