Skip to content

Commit

Permalink
Fix logics
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Aug 9, 2023
1 parent 16f9d26 commit 694c9fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Expand Up @@ -291,8 +291,8 @@ jobs:
runs-on: [ubuntu-latest]
if: |
always() &&
needs.coverage.result == 'success' &&
(needs.unit-tests-linux == 'success' || needs.coverage == 'skipped')
needs.coverage.result == 'success' ||
(needs.unit-tests-linux == 'success' && needs.coverage == 'skipped')
steps:
- uses: geekyeggo/delete-artifact@v2
Expand Down

0 comments on commit 694c9fa

Please sign in to comment.