Skip to content

Commit

Permalink
fix 4-Policy docker Job
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Nov 5, 2023
1 parent d8544dd commit 70e8e6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -619,8 +619,9 @@ jobs:
needs: test_suite
# always() is REQUIREd to implement any run if skipped, thing!
if: always() && (needs.set_github_outputs.outputs.DOCKER_POLICY == '1' || (
needs.test_suite.result == 'success' || needs.set_github_outputs.outputs.DOCKER_POLICY == '2')
)
!contains(needs.test_suite.result, 'failure') && !contains(needs.test_suite.result, 'cancelled') && needs.test_suite.result == 'success' ||
needs.set_github_outputs.outputs.DOCKER_POLICY == '2' && !contains(needs.test_suite.result, 'failure') && needs.test_suite.result == 'skipped'
)


# if: |
Expand Down

0 comments on commit 70e8e6e

Please sign in to comment.