-
Notifications
You must be signed in to change notification settings - Fork 0
200 lines (181 loc) · 6.59 KB
/
deploy-changes.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
name: Deploy on changes
on:
push:
branches:
- main
jobs:
## ###############
## 1️⃣ Deploy firebase meta changes
## ###############
deploy-firebase-settings:
name: Deploy changes to meta
runs-on: ubuntu-latest
steps:
# Clones repo to the commit that triggered the event
- name: Cloning repository
uses: actions/checkout@v3
- name: Get changed files in meta file changes
id: changed-firebase-files
uses: tj-actions/changed-files@v35
with:
files: fire{base,store}*
- name: List all changed files
run: |
echo "Any changed: ${{ steps.changed-firebase-files.outputs.any_changed }}, base ref: ${{ github.ref }}"
for file in ${{ steps.changed-firebase-files.outputs.all_changed_files }}; do
echo "change: $file"
done
# Set up node and install frontend dependencies
- name: Set up Node.js (.nvmrc)
uses: actions/setup-node@v3
if: steps.changed-firebase-files.outputs.any_changed == 'true'
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
if: steps.changed-firebase-files.outputs.any_changed == 'true'
run: npm ci
#########
# Deploy
- name: Set up PROD firebase
uses: w9jds/setup-firebase@main
if: |
github.ref == 'refs/heads/main' &&
steps.changed-firebase-files.outputs.any_changed == 'true'
with:
project_id: production
gcp_sa_key: ${{ secrets.GCP_SA_KEY }}
- name: Deploy metadata
if: |
steps.changed-firebase-files.outputs.any_changed == 'true'
run: firebase deploy --only=firestore
## ###############
## 2️⃣ Deploy functions
## ###############
deploy-functions:
name: Deploy changes to functions
needs: deploy-firebase-settings
runs-on: ubuntu-latest
steps:
# Clones repo to the commit that triggered the event
- name: Cloning repository
uses: actions/checkout@v3
- name: Get changed files in functions folder
id: changed-functions-files
uses: tj-actions/changed-files@v35
with:
files: functions/**
- name: List all changed files
run: |
echo "Any changed: ${{ steps.changed-functions-files.outputs.any_changed }}, base ref: ${{ github.ref }}"
for file in ${{ steps.changed-functions-files.outputs.all_changed_files }}; do
echo "change: $file"
done
# Set up node and install frontend dependencies
- name: Set up Node.js (.nvmrc)
uses: actions/setup-node@v3
if: steps.changed-functions-files.outputs.any_changed == 'true'
with:
node-version-file: "functions/.nvmrc"
cache-dependency-path: "functions/package-lock.json"
cache: "npm"
- name: Install functions dependencies
if: steps.changed-functions-files.outputs.any_changed == 'true'
run: npm ci
working-directory: functions
#####################
# Set up environment
- name: Create PROD environment files
if: |
github.ref == 'refs/heads/main' &&
steps.changed-functions-files.outputs.any_changed == 'true'
working-directory: functions
run: |
echo -e "${{ secrets.FUNCTIONS_DOTENV_PRODUCTION }}" > .env
#########
# Deploy
#########
- name: Set up PROD firebase
uses: w9jds/setup-firebase@main
if: |
github.ref == 'refs/heads/main' &&
steps.changed-functions-files.outputs.any_changed == 'true'
with:
project_id: production
gcp_sa_key: ${{ secrets.GCP_SA_KEY }}
- name: Deploy functions
if: |
steps.changed-functions-files.outputs.any_changed == 'true'
run: firebase deploy --only functions
## ###############
## 3️⃣ Deploy frontend changes
## ###############
deploy-frontend:
name: Deploy frontend changes
runs-on: ubuntu-latest
needs: [deploy-functions, deploy-firebase-settings]
steps:
# Clones repo to the commit that triggered the event
- name: Cloning repository
uses: actions/checkout@v3
- name: Get changed files
id: changed-frontend-files
uses: tj-actions/changed-files@v35
with:
files_ignore: functions/**;fire{base,store}*;.*/**
files_ignore_separator: ";"
- name: List all changed files
run: |
echo "Any changed: ${{ steps.changed-frontend-files.outputs.any_changed }}, base ref: ${{ github.base_ref }}"
for file in ${{ steps.changed-frontend-files.outputs.all_changed_files }}; do
echo "change: $file"
done
# Set up node and install frontend dependencies
- name: Set up Node.js (.nvmrc)
uses: actions/setup-node@v3
if: steps.changed-frontend-files.outputs.any_changed == 'true'
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
if: steps.changed-frontend-files.outputs.any_changed == 'true'
run: npm ci
# Set up environment
- name: Create PROD environment files
if: |
github.ref == 'refs/heads/main' &&
steps.changed-frontend-files.outputs.any_changed == 'true'
run: |
echo -e "${{ secrets.DOTENV_PRODUCTION }}" > .env
# Check CI
# - name: Run cypress tests
# if: steps.changed-frontend-files.outputs.any_changed == 'true'
# run: npm run test:ci
# Prep env for deployment
- name: Remove debug token and dev settings from build
if: steps.changed-frontend-files.outputs.any_changed == 'true'
run: |
sed -i 's/^REACT_APP_APPCHECK_DEBUG_TOKEN=.*$//g' .env
sed -i 's/^VITE_APPCHECK_DEBUG_TOKEN=.*$//g' .env
sed -i 's/^VITE_useEmulator=.*$//g' .env
# Build frontend files
- name: Build website files
if: steps.changed-frontend-files.outputs.any_changed == 'true'
env:
NODE_ENV: production
CI: false
run: npm run build
# Deploy frontend
- name: Set up PROD firebase
uses: w9jds/setup-firebase@main
if: |
github.ref == 'refs/heads/main' &&
steps.changed-frontend-files.outputs.any_changed == 'true'
with:
project_id: production
gcp_sa_key: ${{ secrets.GCP_SA_KEY }}
# Deploy frontend
- name: Deploy frontend
if: |
steps.changed-frontend-files.outputs.any_changed == 'true'
run: firebase deploy --only hosting