-
Notifications
You must be signed in to change notification settings - Fork 51
280 lines (237 loc) · 8.81 KB
/
test_and_deploy.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
name: Test & Deploy
on: [push, workflow_dispatch]
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
test_back:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Paris
- name: Install api deps
run: |
cd run
npm install
- name: Run api tests
run: |
cd run
npm run test tests/
- name: Install pm2 server deps
run: |
cd pm2-server
npm install
- name: Run pm2 server tests
run: |
cd pm2-server
npm run test
test_front:
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Paris
- name: Install deps
run: yarn
- name: Run tests
run: npm run test:unit
env:
TZ: CET
create_release:
if: startsWith(github.ref, 'refs/tags/v')
needs: [test_front, test_back]
runs-on: ubuntu-latest
outputs:
current_version: ${{ steps.get_changelog.outputs.version }}
changes: ${{ steps.get_changelog.outputs.changes }}
release_name: ${{ steps.get_release.outputs.release_name }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get tag
id: get_tag
run: echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
shell: bash
- name: Get release name
id: get_release
run: echo "release_name=ethernal@${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
shell: bash
- name: Get Changelog Entry
id: get_changelog
uses: mindsers/changelog-reader-action@v2
with:
validation_depth: 10
version: ${{ steps.get_tag.outputs.current_version }}
- name: Create Release
uses: ncipollo/release-action@v1
with:
body: ${{ steps.get_changelog.outputs.changes }}
tag: ${{ steps.get_changelog.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
publish_docker_images:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release]
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push backend
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
target: prod_all
tags: ${{ secrets.DOCKERHUB_USERNAME }}/ethernal:latest,${{ secrets.DOCKERHUB_USERNAME }}/ethernal:v${{ needs.create_release.outputs.current_version }}
- name: Build and push PM2 server
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile.pm2
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/ethernal-pm2:latest,${{ secrets.DOCKERHUB_USERNAME }}/ethernal-pm2:v${{ needs.create_release.outputs.current_version }}
deploy_front:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release]
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install deps & build
run: yarn && yarn build
env:
VUE_APP_FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }}
VUE_APP_FIREBASE_AUTH_DOMAIN: ${{ secrets.FIREBASE_AUTH_DOMAIN }}
VUE_APP_FIREBASE_DATABASE_URL: ${{ secrets.FIREBASE_DATABASE_URL }}
VUE_APP_FIREBASE_PROJECT_ID: ${{ secrets.FIREBASE_PROJECT_ID }}
VUE_APP_FIREBASE_STORAGE_BUCKET: ${{ secrets.FIREBASE_STORAGE_BUCKET }}
VUE_APP_MESSAGING_SENDER_ID: ${{ secrets.MESSAGING_SENDER_ID }}
VUE_APP_FIREBASE_APP_ID: ${{ secrets.VUE_APP_FIREBASE_APP_ID }}
VUE_APP_API_ROOT: ${{ secrets.API_ROOT }}
VUE_APP_ENABLE_BILLING: true
VUE_APP_MAIN_DOMAIN: ${{ secrets.MAIN_DOMAIN }}
VUE_APP_PUSHER_KEY: ${{ secrets.PUSHER_KEY }}
VUE_APP_ENABLE_ANALYTICS: true
VUE_APP_ENABLE_MARKETING: true
VUE_APP_ENABLE_DEMO: true
VUE_APP_POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
VUE_APP_POSTHOG_API_HOST: ${{ secrets.POSTHOG_API_HOST }}
VUE_APP_SOKETI_HOST: ${{ secrets.SOKETI_HOST }}
VUE_APP_SOKETI_PORT: ${{ secrets.SOKETI_PORT }}
VUE_APP_SOKETI_FORCE_TLS: ${{ secrets.SOKETI_FORCE_TLS }}
VUE_APP_FEEDBACK_FIN_ENDPOINT: ${{ secrets.FEEDBACK_FIN_ENDPOINT }}
VUE_APP_VERSION: ${{ needs.create_release.outputs.current_version }}
VUE_APP_SENTRY_DSN_SECRET: ${{ secrets.SENTRY_DSN_SECRET }}
VUE_APP_SENTRY_DSN_PROJECT_ID: ${{ secrets.SENTRY_DSN_PROJECT_ID }}
COMMIT_REF: ${{ github.sha }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_RELEASE: ${{ needs.create_release.outputs.release_name }}
- uses: nwtgck/actions-netlify@v2.0.0
id: netlify_deploy
with:
publish-dir: './dist'
deploy-message: 'Deploying commit ${{ github.sha }}'
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
- name: Store deploy id
id: store_deploy_id
run: |
ID=$(echo ${{ steps.netlify_deploy.outputs.deploy-url }} | sed 's/https:\/\/\(.*\)--tryethernal\.netlify\.app/\1/')
echo $ID > deploy_id.txt
- name: Upload deploy ID
uses: actions/upload-artifact@v3
with:
name: netlify_deploy_id
path: deploy_id.txt
deploy_back:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release]
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
- name: Setup credentials
run: |
echo "$GCLOUD_CREDENTIALS" >> ethernal-95a14-19f78a7e26cc.json
shell: bash
env:
GCLOUD_CREDENTIALS: ${{ secrets.GCLOUD_CREDENTIALS }}
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Build & push backend image
run: |
flyctl auth docker
docker build --target prod_back -t registry.fly.io/ethernal:${{ github.sha }} -f Dockerfile .
docker push registry.fly.io/ethernal:${{ github.sha }}
- name: Build & push PM2 server image
run: |
flyctl auth docker
docker build --target prod -t registry.fly.io/ethernal-pm2:${{ github.sha }} -f Dockerfile.pm2 .
docker push registry.fly.io/ethernal-pm2:${{ github.sha }}
release_front:
if: startsWith(github.ref, 'refs/tags/v')
needs: [deploy_front, deploy_back]
runs-on: ubuntu-latest
environment: production
steps:
- name: Download Deploy ID
uses: actions/download-artifact@v3
with:
name: netlify_deploy_id
- name: Release deploy
run: |
deploy_id=$(cat deploy_id.txt)
curl -H "Authorization: Bearer ${{ secrets.NETLIFY_AUTH_TOKEN }}" -X POST -d {} https://api.netlify.com/api/v1/sites/${{ secrets.NETLIFY_SITE_ID }}/deploys/$deploy_id/restore
release_back:
if: startsWith(github.ref, 'refs/tags/v')
needs: [deploy_front, deploy_back, create_release]
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Update version
run: |
flyctl secrets set VERSION=${{ needs.create_release.outputs.current_version }} --stage -a ethernal
flyctl secrets set VERSION=${{ needs.create_release.outputs.current_version }} --stage -a ethernal-pm2
- name: Release backend
run: flyctl deploy -c fly.toml -i registry.fly.io/ethernal:${{ github.sha }}
- name: Release PM2 server
run: flyctl deploy -c fly.pm2.toml -i registry.fly.io/ethernal-pm2:${{ github.sha }}
- name: Release Soketi server
run: flyctl deploy -c fly.soketi.toml