Skip to content

Commit 5c3ef4a

Browse files
committed
fix: correct environment variable for Firebase functions deployment
1 parent 5c46fcc commit 5c3ef4a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/firebase-deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
- name: Deploy Functions
4545
run: |
4646
npm install -g firebase-tools
47+
firebase login:ci --token=${FIREBASE_SERVICE_ACCOUNT}
4748
firebase deploy --only functions
4849
env:
49-
GOOGLE_APPLICATION_CREDENTIALS: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_THINGS_TO_COMPLETE }}"
50+
FIREBASE_SERVICE_ACCOUNT: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_THINGS_TO_COMPLETE }}"
5051
FIREBASE_PROJECT_ID: things-to-complete

0 commit comments

Comments
 (0)