From 9ce36e8a4da09488ab836bcdf0257cd5aaae004c Mon Sep 17 00:00:00 2001 From: Josh Mandel Date: Sat, 23 Sep 2023 17:00:26 -0500 Subject: [PATCH] Create deploy-to-gae.yaml --- .github/workflows/deploy-to-gae.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/deploy-to-gae.yaml diff --git a/.github/workflows/deploy-to-gae.yaml b/.github/workflows/deploy-to-gae.yaml new file mode 100644 index 0000000..cc480c4 --- /dev/null +++ b/.github/workflows/deploy-to-gae.yaml @@ -0,0 +1,19 @@ +name: Deploy to GAE +on: + push: + branches: + - master +permissions: + contents: 'read' + id-token: 'write' +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - id: 'auth' + uses: 'google-github-actions/auth@v1' + with: + workload_identity_provider: 'projects/769700566231/locations/global/workloadIdentityPools/gh-actions-pool/providers/github' + service_account: 'github-deploy@fhir-org-cds-services.iam.gserviceaccount.com' + - id: 'deploy' + uses: 'google-github-actions/deploy-appengine@v1'