refactor(ci): add explicit needs to deploy stages

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-12-28 20:03:41 -05:00
parent 8cea9303e1
commit c598ff61b3
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -29,6 +29,8 @@ build_stage:
deploy_staging: deploy_staging:
stage: deploy stage: deploy
resource_group: staging resource_group: staging
needs:
- build_stage
environment: environment:
name: staging name: staging
url: https://next.rockfic.com url: https://next.rockfic.com
@ -56,6 +58,8 @@ deploy_staging:
- tags - tags
deploy_production: deploy_production:
stage: deploy stage: deploy
needs:
- build_stage
resource_group: production resource_group: production
environment: environment:
name: production name: production