fix: Require all checks to complete before tagging
This commit is contained in:
parent
11858d3677
commit
8797488cc2
1 changed files with 9 additions and 1 deletions
|
@ -115,7 +115,15 @@ report_coverage:
|
|||
# If tests pass, tag the commit and update package versions
|
||||
deploy_to_tags:
|
||||
stage: deploy_tags
|
||||
needs: ['test', 'build_image_for_commit']
|
||||
needs:
|
||||
- test
|
||||
- test_1.10.4
|
||||
- test_1.11.4
|
||||
- build_image_for_commit
|
||||
- cypress
|
||||
- credo
|
||||
- prettier
|
||||
- stylelint
|
||||
image: "node:16"
|
||||
only:
|
||||
- master
|
||||
|
|
Loading…
Reference in a new issue