From a52e43eff0e47969339f78e3c62af128ddd4c400 Mon Sep 17 00:00:00 2001 From: Justin Uberti Date: Sat, 7 Dec 2024 19:47:26 -0800 Subject: [PATCH] Write out service_account.json until we understand what's happening (#688) * v1 * Move everything to Python 3.10 * ugh * Don't overwrite prod credentials * Go back to old way, force write key --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b5fac93..7d01df4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,10 @@ jobs: with: credentials_json: ${{secrets.GCP_SERVICE_ACCOUNT}} - - name: Verify tests pass + - name: Export key + run: echo '${{secrets.GCP_SERVICE_ACCOUNT}}' > service_account.json + + - name: Verify tests still pass run: python main_test.py - name: Upload master_schedule.json