From 06c26502bd41ee3702b5c1326d876818197a4b13 Mon Sep 17 00:00:00 2001 From: "jake.ross" Date: Tue, 6 Jan 2026 20:26:21 -0700 Subject: [PATCH] feat: add Google Cloud authentication step in staging workflow --- .github/workflows/CD_staging.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/CD_staging.yml b/.github/workflows/CD_staging.yml index 94270a832..c172d03d3 100644 --- a/.github/workflows/CD_staging.yml +++ b/.github/workflows/CD_staging.yml @@ -32,6 +32,11 @@ jobs: --no-dev \ --output-file requirements.txt + - name: Authenticate to Google Cloud + uses: 'google-github-actions/auth@v2' + with: + credentials_json: ${{ secrets.CLOUD_SQL_SERVICE_ACCOUNT_KEY }} + - name: Run Alembic migrations on staging database env: DB_DRIVER: "cloudsql"