-
Notifications
You must be signed in to change notification settings - Fork 71
237 lines (194 loc) · 6.81 KB
/
Copy pathtest_and_deploy.yml
File metadata and controls
237 lines (194 loc) · 6.81 KB
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
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: 18
- 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: 18
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: Europe/Paris
- name: Install deps
run: yarn
- name: Run tests
run: yarn test tests/unit
env:
VITE_ENABLE_BILLING: true
VITE_MAIN_DOMAIN: ethernal.local:8080
VITE_ENABLE_DEMO: true
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 }}
run_migrations:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release]
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install deps
run: cd run && npm install
- name: Run migrations
run: cd run && npx sequelize db:migrate
env:
DB_HOST: ${{ secrets.DB_HOST }}
DB_PORT: ${{ secrets.DB_PORT }}
DB_USER: ${{ secrets.DB_USER }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
deploy_caddy:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release, run_migrations]
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy Caddy
run: |
flyctl deploy -c fly.caddy.toml \
--build-arg VITE_SENTRY_DSN_SECRET=${{ secrets.VITE_SENTRY_DSN_SECRET }} \
--build-arg VITE_SENTRY_DSN_PROJECT_ID=${{ secrets.VITE_SENTRY_DSN_PROJECT_ID }} \
--build-arg VITE_SENTRY_AUTH_TOKEN=${{ secrets.VITE_SENTRY_AUTH_TOKEN }} \
--build-arg VITE_SENTRY_ORG=${{ secrets.VITE_SENTRY_ORG }} \
--build-arg VITE_SENTRY_PROJECT=${{ secrets.VITE_SENTRY_PROJECT }} \
--build-arg VITE_SENTRY_URL=${{ secrets.VITE_SENTRY_URL }} \
--build-arg VITE_SENTRY_ENABLED=${{ secrets.VITE_SENTRY_ENABLED }} \
--build-arg VITE_SOKETI_KEY=${{ secrets.SOKETI_DEFAULT_APP_KEY }}
deploy_back_amd64:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release, run_migrations]
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: Setup Docker Buildx
run: |
docker buildx create --use
docker buildx inspect --bootstrap
shell: bash
- name: Log in to Docker Hub
run: |
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
- name: Build & push backend image
run: |
flyctl auth docker
./build-prod-images-amd64.sh ${{ needs.create_release.outputs.current_version }}
deploy_back_arm64:
if: startsWith(github.ref, 'refs/tags/v')
needs: [create_release, run_migrations]
runs-on: ubuntu-latest
environment: production
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Setup Docker Buildx
run: |
docker buildx create --use
docker buildx inspect --bootstrap
shell: bash
- name: Log in to Docker Hub
run: |
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
- name: Build & push backend image
run: |
flyctl auth docker
./build-prod-images-arm64.sh ${{ needs.create_release.outputs.current_version }}
release_back:
if: startsWith(github.ref, 'refs/tags/v')
needs: [deploy_back_amd64, 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:${{ needs.create_release.outputs.current_version }}
- name: Release PM2 server
run: flyctl deploy -c fly.pm2.toml -i registry.fly.io/ethernal-pm2:${{ needs.create_release.outputs.current_version }}
- name: Release Soketi server
run: flyctl deploy -c fly.soketi.toml