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 efcd101 commit 2d4c9d2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,12 @@ jobs:
docker_build:
runs-on: ubuntu-latest
needs: test_suite
if: always() && (needs.test_suite.result == 'success' || needs.set_github_outputs.outputs.DOCKER_POLICY == '2')

# 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')

# if: |
# always() &&
# needs.build-and-publish-web.result == 'success' &&
Expand Down

0 comments on commit 2d4c9d2

Please sign in to comment.