From cb7fd7071d99b46178759ae16a0860bdadd8d4c9 Mon Sep 17 00:00:00 2001 From: Andrew Chasin Date: Wed, 20 Sep 2023 14:38:01 -0400 Subject: [PATCH] change artifact registry repository name --- .github/workflows/deployment.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment.yaml b/.github/workflows/deployment.yaml index c2c955c..14d1633 100644 --- a/.github/workflows/deployment.yaml +++ b/.github/workflows/deployment.yaml @@ -3,6 +3,7 @@ on: pull_request: branches: [develop, main] push: + branches: [feature/**] workflow_dispatch: inputs: environment: @@ -27,7 +28,7 @@ jobs: environment: dev ref: ${{ github.sha }} gcp_project_id: hca-demo-dev - artifact_registry_repo: reference-architectures + artifact_registry_repo: blueprints region: us-east4 service_name: sample-service code_directory: ./code/hello-python @@ -48,13 +49,14 @@ jobs: environment: qa ref: ${{ github.sha }} gcp_project_id: hca-demo-qa - artifact_registry_repo: reference-architectures + artifact_registry_repo: blueprints region: us-east4 service_name: sample-service code_directory: ./code/hello-python language: python secrets: inherit + #PROD prod: if: inputs.environment == 'prod' uses: ./.github/workflows/_deployment.yaml @@ -67,7 +69,7 @@ jobs: environment: prod ref: ${{ github.sha }} gcp_project_id: hca-demo-prod - artifact_registry_repo: reference-architectures + artifact_registry_repo: blueprints region: us-east4 service_name: sample-service code_directory: ./code/hello-python