mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
Fixed requiring passing tests for canary builds
- this disappeared due to a regression in a previous commit
This commit is contained in:
parent
5a72c5ad91
commit
eebd198027
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -950,7 +950,7 @@ jobs:
|
|||
]
|
||||
name: Canary
|
||||
runs-on: ubuntu-latest
|
||||
if: always() && needs.job_setup.outputs.is_canary_branch == 'true' && needs.job_setup.result == 'success'
|
||||
if: always() && needs.job_setup.outputs.is_canary_branch == 'true' && needs.job_setup.result == 'success' && needs.job_required_tests.result == 'success'
|
||||
steps:
|
||||
- name: Output needs (for debugging)
|
||||
run: echo "${{ toJson(needs) }}"
|
||||
|
|
Loading…
Reference in a new issue