Merge pull request #93 from pwei1018/feature-update-notifyservice #1
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: Notify API CD GCP | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "notify-api/**" | ||
workflow_dispatch: | ||
inputs: | ||
target: | ||
description: "Deploy To" | ||
required: true | ||
type: choice | ||
options: | ||
- dev | ||
- test | ||
- sandbox | ||
- prod | ||
jobs: | ||
notify-api-cd: | ||
Check failure on line 22 in .github/workflows/notify-api-cd-gcp.yaml GitHub Actions / Notify API CD GCPInvalid workflow file
|
||
uses: bcgov/bcregistry-sre/.github/workflows/cloud-run-service-cd.yaml@main | ||
with: | ||
target: ${{ inputs.target }} | ||
app_name: "notify-api" | ||
working_directory: "./notify-api" | ||
secrets: | ||
WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }} | ||
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} |