Skip to content

Commit

Permalink
Merge pull request #5 from tvdijen/patch-2
Browse files Browse the repository at this point in the history
Fix logics
  • Loading branch information
ghalse committed Oct 19, 2023
2 parents a81402f + 9f30ec3 commit d6c8d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,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 d6c8d45

Please sign in to comment.