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

# if: |
# always() &&
# needs.build-and-publish-web.result == 'success' &&
# (needs.deploy-api.result == 'success' || needs.deploy-api.result == 'skipped') &&
# (needs.deploy-sync.result == 'success' || needs.deploy-sync.result == 'skipped'

if: always() && needs.set_github_outputs.outputs.DOCKER_POLICY == '1' || (
needs.test_suite.result == 'success' ||
needs.test_suite.result == 'skipped' && needs.set_github_outputs.outputs.DOCKER_JOB_POLICY == '2'
)
# if: always() && needs.set_github_outputs.outputs.DOCKER_POLICY == '1' || (
# needs.test_suite.result == 'success' ||
# needs.test_suite.result == 'skipped' && needs.set_github_outputs.outputs.DOCKER_JOB_POLICY == '2'
# )

# if: ${{ needs.set_github_outputs.outputs.DOCKER_POLICY == '1' && (
# needs.set_github_outputs.outputs.always_run == 'true' ||
Expand Down

0 comments on commit 58b7193

Please sign in to comment.