fix(web): Site purchase amount wording in urban project form #798
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Delivery" | |
# Run when push occurs on main branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
integration-checks: | |
uses: ./.github/workflows/integration-checks.yml | |
build-and-upload-web-artifact: | |
# jobs are run in parallel by default, we want them to run sequentially | |
needs: [integration-checks] | |
uses: ./.github/workflows/build-and-upload-web-artifact.yml | |
with: | |
tag: "v${{ github.run_number }}" | |
build-and-upload-api-artifact: | |
# jobs are run in parallel by default, we want them to run sequentially | |
needs: [integration-checks] | |
uses: ./.github/workflows/build-and-upload-api-artifact.yml | |
with: | |
tag: "v${{ github.run_number }}" | |
deploy-staging: | |
name: Deploy staging | |
# jobs are run in parallel by default, we want them to run sequentially | |
needs: [build-and-upload-web-artifact, build-and-upload-api-artifact] | |
uses: ./.github/workflows/deploy-to-scalingo.yml | |
with: | |
environment: staging | |
tag: "v${{ github.run_number }}" | |
secrets: inherit |