From da3e14ecf623b1cfb42136bae742f5a1fcf68341 Mon Sep 17 00:00:00 2001 From: Yash Pankhania Date: Thu, 11 Jul 2024 13:27:31 +1000 Subject: [PATCH] testing prod pipes, temp wfl change --- .github/workflows/trigger_schema_updater.yaml | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/trigger_schema_updater.yaml b/.github/workflows/trigger_schema_updater.yaml index 4a286d5dc..2ac4d7aa1 100644 --- a/.github/workflows/trigger_schema_updater.yaml +++ b/.github/workflows/trigger_schema_updater.yaml @@ -23,26 +23,26 @@ jobs: steps: - uses: actions/checkout@v4 - - id: "branch-check" + - id: 'branch-check' name: Fail if branch is not main or dev - if: github.event_name == 'workflow_dispatch' && (github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev') + if: github.event_name == 'workflow_dispatch' && (github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/first-class-files-v3') run: | echo "This workflow should not be triggered with workflow_dispatch on a branch other than main or dev" exit 1 - - id: "google-cloud-auth" - name: "Authenticate to Google Cloud" - uses: "google-github-actions/auth@v2" + - id: 'google-cloud-auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@v2' with: - workload_identity_provider: "projects/774248915715/locations/global/workloadIdentityPools/github-pool/providers/github-provider" - service_account: "sample-metadata-deploy@sample-metadata.iam.gserviceaccount.com" + workload_identity_provider: 'projects/774248915715/locations/global/workloadIdentityPools/github-pool/providers/github-provider' + service_account: 'sample-metadata-deploy@sample-metadata.iam.gserviceaccount.com' - - id: "google-cloud-sdk-setup" - name: "Set up Cloud SDK" + - id: 'google-cloud-sdk-setup' + name: 'Set up Cloud SDK' uses: google-github-actions/setup-gcloud@v2 - - id: "invoke-cloud-run" - name: "Invoke Cloud Run" + - id: 'invoke-cloud-run' + name: 'Invoke Cloud Run' run: | CLOUD_RUN_URL=$(gcloud run services describe schema-updater --region australia-southeast1 --format 'value(status.url)')/execute-liquibase?environment=${{ github.event.inputs.environment }} TOKEN=$(gcloud auth print-identity-token --impersonate-service-account="sample-metadata-deploy@sample-metadata.iam.gserviceaccount.com" --audiences="$CLOUD_RUN_URL" --include-email)