Skip to content

Commit

Permalink
fix: needs
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Jul 15, 2024
1 parent 956e71c commit fe57681
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,8 @@ jobs:
if: always()
steps:
- run: |
if [[ "${{ needs.codegen.outputs.success }}" != "true" ]]; then
echo "codegen step didn't succeed"
if [[ ("${{ needs.codegen.outputs.success }}" != "true") || ("${{ needs.swift_cts_macos.outputs.success }}" != "true") || ("${{ needs.kotlin_build_macos.outputs.success }}" != "true")]]; then
echo "a needed step failed"
exit 1
fi
Expand Down

0 comments on commit fe57681

Please sign in to comment.