Skip to content

Commit

Permalink
update test deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
jodeleeuw committed Mar 12, 2024
1 parent 9dd66ed commit b72c3fe
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/firebase-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: ["test"]

env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
#FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
NEXT_PUBLIC_FIREBASE_CONFIG: ${{ secrets.FIREBASE_TEST_CONFIG }}

jobs:
Expand All @@ -17,7 +17,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:
Expand All @@ -27,6 +27,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}' # Replace with the name of your GitHub Actions secret
- name: Install firebase tools
run: npm install -g [email protected]
- name: Enable firebase webframeworks
Expand Down

0 comments on commit b72c3fe

Please sign in to comment.