diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..c7c0d9d --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,15 @@ +name: Deploy +on: [push] +jobs: + deploy: + permissions: + contents: 'read' + id-token: 'write' + steps: + - uses: 'actions/checkout@v4' + - id: 'auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@v1' + with: + workload_identity_provider: ${{ env.GCP_WORKLOAD_IDENTITY_PROVIDER }} + service_account: ${{ env.GCP_SERVICE_ACCOUNT }}