chore: update fuzzey match migration #560
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: Deploy Staging | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test_backend: | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
uses: ./.github/workflows/backend_test_workflow.yaml | |
build_and_deploy_backend: | |
needs: test_backend | |
uses: ./.github/workflows/backend_deploy_workflow.yaml | |
permissions: | |
contents: read | |
id-token: "write" # needed for using open id token to authenticate with GCP services | |
with: | |
environment: "staging" | |
version: latest |