0
Fork 0
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:
Daniel Lockyer 2024-09-25 10:29:19 +02:00
parent 5a72c5ad91
commit eebd198027
No known key found for this signature in database

View file

@ -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) }}"