-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.59 KB
/
cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Deploy to Google Cloud
on:
push:
branches: [cd]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
# Needed to produce an OIDC token, which is used for Workload Identity Federation with Google Cloud
id-token: write
contents: read
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
path: checkout-prefix
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install firebase-tools
run: npm install -g firebase-tools
- name: Authenticate to Google
uses: 'google-github-actions/auth@v2'
with:
workload_identity_provider: 'projects/705985154569/locations/global/workloadIdentityPools/kipr-github-identity-pool/providers/github'
project_id: 'kipr-321905'
service_account: 'simulator-cloud-functions-gith@kipr-321905.iam.gserviceaccount.com'
create_credentials_file: true
export_environment_variables: true
cleanup_credentials: true
- name: Install dependencies
run: npm install
working-directory: checkout-prefix
- name: Build
run: npm run build
working-directory: checkout-prefix
- name: Deploy functions
id: deployFunctions
run: npm run deploy
working-directory: checkout-prefix
- name: Output firebase debug log on deployment failure
if: always() && (steps.deployFunctions.outcome == 'failure')
run: cat firebase-debug.log
working-directory: checkout-prefix