We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8888069 commit d172b23Copy full SHA for d172b23
.github/workflows/deploy-prod.yml
@@ -25,8 +25,13 @@ jobs:
25
node-version: ${{ matrix.node-version }}
26
- run: yarn install && yarn build
27
- run: yarn release
28
- - run: cd functions && yarn install && yarn deploy:config:prod --token ${{ secrets.FIREBASE_TOKEN }}
29
- - run: yarn deploy:prod --token ${{ secrets.FIREBASE_TOKEN }}
+ - name: Authenticate with Google Cloud
+ uses: google-github-actions/auth@v2
30
+ with:
31
+ credentials_json: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
32
+
33
+ - run: cd functions && yarn install && yarn deploy:config:prod
34
+ - run: yarn deploy:prod
35
- name: Upload Release Asset
36
id: upload-release-asset
37
uses: shogo82148/actions-upload-release-asset@v1
0 commit comments