-
Notifications
You must be signed in to change notification settings - Fork 11
289 lines (252 loc) Β· 8.88 KB
/
ci.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
281
282
283
284
285
286
287
288
name: ci
on:
pull_request:
types: [opened, synchronize, reopened, closed]
branches: [main]
push:
branches: [main]
permissions:
contents: write
pages: write
id-token: write
pull-requests: write
jobs:
check_build_and_deploy_job:
if: github.event_name == 'pull_request' && github.event.action != 'closed'
runs-on: ubuntu-latest
name: Build PR and Deploy π
needs: terraform_plan
steps:
- name: Checkout repo ποΈ
uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node 18.x π§
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- name: Install Dependencies π¦
run: |
yarn install
- name: Build βοΈ
env:
TYPESENSE_HOST: ${{ needs.terraform_plan.outputs.typesense_container_app_fqdn }}
TYPESENSE_SEARCH_ONLY_API_KEY: ${{ needs.terraform_plan.outputs.typesense_search_only_api_key }}
run: |
yarn build
- name: Deploy Staging Environment π
uses: Azure/static-web-apps-deploy@latest
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
action: "upload"
app_location: "/build"
skip_app_build: true
skip_deploy_on_missing_secrets: true
- name: Run linters and formatter checks π
run: |
yarn typecheck
yarn lint:ci
yarn prettier:ci
close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Cleanup Staging Environment π§Ή
steps:
- name: Cleanup Staging Environment π§Ή
uses: Azure/static-web-apps-deploy@latest
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
action: "close"
skip_deploy_on_missing_secrets: true
build_release_gh_pages:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
name: Build and Push GitHub Pages Site π
needs: terraform_apply
concurrency:
group: build_release_gh_pages
cancel-in-progress: true
steps:
- name: Checkout repo ποΈ
uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node 18.x π§
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- name: Setup Pages π
id: pages
uses: actions/configure-pages@v3
- name: Install Dependencies π¦
run: |
yarn install
- name: Run linter and formatter checks π¨
run: |
yarn typecheck
yarn lint:ci
yarn prettier:ci
- name: Build βοΈ
env:
TYPESENSE_HOST: ${{ needs.terraform_apply.outputs.typesense_container_app_fqdn }}
TYPESENSE_SEARCH_ONLY_API_KEY: ${{ needs.terraform_apply.outputs.typesense_search_only_api_key }}
run: |
yarn build
- name: Upload artifact β¬οΈ
uses: actions/upload-pages-artifact@v2
with:
path: build/
- name: Deploy to GitHub Pages π
id: deployment
uses: actions/deploy-pages@v2
update_search_db:
runs-on: ubuntu-latest
name: Update search DB π
needs: [terraform_apply, build_release_gh_pages]
steps:
- name: Checkout repo ποΈ
uses: actions/checkout@v4
with:
submodules: recursive
- name: Run DocSearch Scraper π
run: |
docker run \
--env TYPESENSE_API_KEY="${{ secrets.TYPESENSE_API_KEY }}" \
--env TYPESENSE_HOST="${{ needs.terraform_apply.outputs.typesense_container_app_fqdn }}" \
--env TYPESENSE_PORT="443" \
--env TYPESENSE_PROTOCOL="https" \
--env CONFIG="$(cat ./.github/workflows/typesense-scraper-config.json | jq -r tostring)" \
typesense/docsearch-scraper:0.7.0
terraform_plan:
runs-on: ubuntu-latest
name: Terraform Plan π€π
if: github.event_name == 'pull_request' && github.event.action != 'closed'
concurrency:
group: terraform
cancel-in-progress: false
outputs:
typesense_search_only_api_key: ${{ steps.tf-outputs.outputs.typesense_search_only_api_key }}
typesense_container_app_fqdn: ${{ steps.tf-outputs.outputs.typesense_container_app_fqdn }}
env:
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.AZURE_AD_TENANT_ID }}
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ARM_USE_OIDC: true
TF_WORKSPACE: prod
TF_IN_AUTOMATION: true
TF_INPUT: 0
steps:
- name: Checkout repo ποΈ
uses: actions/checkout@v4
with:
submodules: recursive
- name: Azure CLI setup βοΈ
uses: azure/login@v1
with:
client-id: ${{ env.ARM_CLIENT_ID }}
tenant-id: ${{ env.ARM_TENANT_ID }}
subscription-id: ${{ env.ARM_SUBSCRIPTION_ID }}
- name: Terraform Format π
id: fmt
uses: dflook/terraform-fmt-check@v1
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
- name: Terraform Validate π
id: validate
uses: dflook/terraform-validate@v1
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
- name: Get Typesense collection name βοΈ
id: get_typesense_collection_name
run: |
typesense_collection_name=$(jq -r '.index_name' .github/workflows/typesense-scraper-config.json)
echo "typesense_collection_name=$typesense_collection_name" >> "$GITHUB_OUTPUT"
- name: Terraform Plan π
id: plan
uses: dflook/terraform-plan@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
variables: |
typesense_api_key="${{ secrets.TYPESENSE_API_KEY }}"
typesense_rg="${{ secrets.TYPESENSE_RESOURCE_GROUP_NAME }}"
typesense_collection_name="${{ steps.get_typesense_collection_name.outputs.typesense_collection_name }}"
- name: Get outputs βοΈ
uses: dflook/terraform-output@v1
id: tf-outputs
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
terraform_apply:
runs-on: ubuntu-latest
name: Terraform Apply π€π
environment: azure-container-app
concurrency:
group: terraform
cancel-in-progress: false
env:
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.AZURE_AD_TENANT_ID }}
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
ARM_USE_OIDC: true
TF_WORKSPACE: prod
TF_IN_AUTOMATION: true
TF_INPUT: 0
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
outputs:
typesense_search_only_api_key: ${{ steps.tf-outputs.outputs.typesense_search_only_api_key }}
typesense_container_app_fqdn: ${{ steps.tf-outputs.outputs.typesense_container_app_fqdn }}
steps:
- name: Checkout repo ποΈ
uses: actions/checkout@v4
with:
submodules: recursive
- name: Azure CLI setup βοΈ
uses: azure/login@v1
with:
client-id: ${{ env.ARM_CLIENT_ID }}
tenant-id: ${{ env.ARM_TENANT_ID }}
subscription-id: ${{ env.ARM_SUBSCRIPTION_ID }}
- name: Terraform Format π
id: fmt
uses: dflook/terraform-fmt-check@v1
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
- name: Terraform Validate π
id: validate
uses: dflook/terraform-validate@v1
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
- name: Get Typesense collection name βοΈ
id: get_typesense_collection_name
run: |
typesense_collection_name=$(jq -r '.index_name' .github/workflows/typesense-scraper-config.json)
echo "typesense_collection_name=$typesense_collection_name" >> "$GITHUB_OUTPUT"
- name: Terraform Apply π
id: apply
uses: dflook/terraform-apply@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}
variables: |
typesense_api_key="${{ secrets.TYPESENSE_API_KEY }}"
typesense_rg="${{ secrets.TYPESENSE_RESOURCE_GROUP_NAME }}"
typesense_collection_name="${{ steps.get_typesense_collection_name.outputs.typesense_collection_name }}"
- name: Get outputs βοΈ
uses: dflook/terraform-output@v1
id: tf-outputs
with:
path: tf
workspace: ${{ env.TF_WORKSPACE }}