Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Nov 5, 2023
1 parent 2d4c9d2 commit d8544dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -617,11 +617,11 @@ jobs:
docker_build:
runs-on: ubuntu-latest
needs: test_suite
# V1 below, works as expected
# if: always() && (needs.test_suite.result == 'success' || needs.set_github_outputs.outputs.DOCKER_POLICY == '2')
#
# Trial
if: (needs.test_suite.result == 'success' || needs.set_github_outputs.outputs.DOCKER_POLICY == '2')
# 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')
)


# if: |
# always() &&
Expand Down

0 comments on commit d8544dd

Please sign in to comment.