Skip to content

Merge pull request #265 from PolicyEngine/fix/retry_on_all_sim_servic… #158

Merge pull request #265 from PolicyEngine/fix/retry_on_all_sim_servic…

Merge pull request #265 from PolicyEngine/fix/retry_on_all_sim_servic… #158

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
concurrency:
group: deploy-main
jobs:
build_beta:
name: Build beta
uses: ./.github/workflows/gcp-build.reusable.yml
with:
environment: beta
secrets: inherit
build_prod:
name: Build production
uses: ./.github/workflows/gcp-build.reusable.yml
with:
environment: prod
secrets: inherit
deploy_beta:
name: Deploy beta
needs: [build_beta]
uses: ./.github/workflows/gcp-deploy.reusable.yml
with:
environment: beta
secrets: inherit
deploy_prod:
name: Deploy production
needs: [deploy_beta, build_prod]
uses: ./.github/workflows/gcp-deploy.reusable.yml
with:
environment: prod
secrets: inherit