-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (35 loc) · 1.09 KB
/
deploy_functions.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
name: Deploy to DEV
on:
push:
branches:
- stg
workflow_dispatch:
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- uses: actions/checkout@v3
# Step 2: Set up Python environment
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Step 3: Set up Node.js environment
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 19.7.0
# Step 4: Create Service Account Key
- name: Create SA key
run: echo '${{ secrets.FIREBASE_SERVICE_ACCOUNT_SCHEMESSG_V3_DEV }}' > $HOME/gcloud.json
# Step 5: Deploy Cloud Functions
- name: Deploy Cloud Functions
working-directory: backend/functions
run: |
python3.10 -m venv venv
. venv/bin/activate
npx firebase-tools --version
python3.10 -m pip install -r requirements.txt
export GOOGLE_APPLICATION_CREDENTIALS=$HOME/gcloud.json
npx firebase-tools deploy --only functions --debug