From d200393570b197049f93bef1de7a5d687faecbaa Mon Sep 17 00:00:00 2001 From: Josh de Leeuw Date: Tue, 12 Mar 2024 13:28:21 -0400 Subject: [PATCH] update deploy action --- .github/workflows/firebase-deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/firebase-deploy.yml b/.github/workflows/firebase-deploy.yml index 3d3607e..a63c568 100644 --- a/.github/workflows/firebase-deploy.yml +++ b/.github/workflows/firebase-deploy.yml @@ -8,7 +8,7 @@ on: branches: ["main"] env: - FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} + #FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} NEXT_PUBLIC_FIREBASE_CONFIG: ${{ secrets.FIREBASE_PRODUCTION_CONFIG }} @@ -18,7 +18,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -28,6 +28,9 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: "npm" + - uses: 'google-github-actions/auth@v2' + with: + credentials_json: '${{ secrets.GOOGLE_PRODUCTION_CREDENTIALS }}' - name: Install firebase tools run: npm install -g firebase-tools@12.1.0 - name: Enable firebase webframeworks