Skip to content

Commit

Permalink
ci: Fix skipping codecov2 upload for scheduled (#3015)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipphofmann authored May 9, 2023
1 parent ba4d16f commit 8a219cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ jobs:
- name: Push code coverage to codecov
id: codecov_2
uses: codecov/codecov-action@894ff025c7b54547a9a2a1e9f228beae737ad3c2 # [email protected]
if: steps.codecov_1.outcome == 'failure' && ${{ contains(matrix.platform, 'iOS') && !contains(github.ref, 'release') && github.event.schedule == '' }}
if: ${{ steps.codecov_1.outcome == 'failure' && contains(matrix.platform, 'iOS') && !contains(github.ref, 'release') && github.event.schedule == '' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand Down

0 comments on commit 8a219cb

Please sign in to comment.