24363 - New magic link formatting based if FF is on (#3166) #1114
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: Auth API CD | |
on: | |
push: | |
branches: | |
- main | |
- feature* | |
- hotfix* | |
paths: | |
- "auth-api/**" | |
workflow_dispatch: | |
inputs: | |
target: | |
description: "Deploy To" | |
required: true | |
type: choice | |
options: | |
- dev | |
- test | |
- sandbox | |
- prod | |
jobs: | |
auth-api-cd: | |
uses: bcgov/bcregistry-sre/.github/workflows/backend-cd.yaml@main | |
with: | |
target: ${{ inputs.target }} | |
app_name: "auth-api" | |
working_directory: "./auth-api" | |
secrets: | |
WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | |
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} |