-
Notifications
You must be signed in to change notification settings - Fork 11
236 lines (210 loc) · 8.72 KB
/
deploy.yml
File metadata and controls
236 lines (210 loc) · 8.72 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
name: Deploy
on:
push:
branches: [main, release]
paths-ignore: ['**.md']
pull_request:
branches: [main]
paths-ignore: ['**.md']
pull_request_review:
types: [submitted]
branches: [main]
defaults:
run:
shell: bash
permissions:
pull-requests: write
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
# Ensures we checkout the PR head commit for both pull_request and pull_request_review events
ref: ${{ github.event.pull_request.head.sha || github.sha }}
# Fetches the full git history, both base and head SHAs are available
fetch-depth: 0
- name: Check deployment permissions
id: deploy-check
uses: actions/github-script@v8
with:
script: |
const script = await import('${{ github.workspace }}/.github/scripts/check-deploy-permissions.ts');
await script.default({ core, context });
- uses: ./.github/workflows/setup
- name: Install wrangler globally
# The wrangler Action expects a global installation, so we better reuse
# what we've in our project.
run: |
wrangler_version=$(cat package.json | jq -r '.pnpm.overrides.wrangler')
pnpm install -g "wrangler@${wrangler_version}"
# https://github.com/dorny/paths-filter/issues/232
- uses: dorny/paths-filter@v4
if: github.event_name != 'pull_request_review'
id: changes
with:
filters: |
workflow: &workflow
- '.github/workflows/deploy.yml'
- '.github/workflows/deploy-worker/**'
api: &api
- *workflow
- 'api/**'
- 'shared/**'
cdn: &cdn
- *workflow
- *api
- 'components/**'
- 'cdn/**'
frontend:
- *workflow
- *api
- *cdn
- 'frontend/**'
- name: Detect changes for review-triggered deployment
if: github.event_name == 'pull_request_review'
id: changes-review
run: |
# Get the PR base and head SHAs
BASE_SHA=${{ github.event.pull_request.base.sha }}
HEAD_SHA=${{ github.event.pull_request.head.sha }}
# Get list of changed files in the PR
CHANGED_FILES=$(git diff --name-only $BASE_SHA $HEAD_SHA)
SHARED_CHANGED=$(echo "$CHANGED_FILES" | grep -qE '^(\.github/workflows/(deploy\.yml|deploy-worker/)|shared/)' && echo true || echo false)
API_CHANGED=$(echo "$CHANGED_FILES" | grep -qE '^api/' && echo true || echo false)
COMPONENTS_CHANGED=$(echo "$CHANGED_FILES" | grep -qE '^components/' && echo true || echo false)
CDN_CHANGED=$(echo "$CHANGED_FILES" | grep -qE '^cdn/' && echo true || echo false)
FRONTEND_CHANGED=$(echo "$CHANGED_FILES" | grep -qE '^frontend/' && echo true || echo false)
if $SHARED_CHANGED || $API_CHANGED; then
echo "api=true" >> $GITHUB_OUTPUT
else
echo "api=false" >> $GITHUB_OUTPUT
fi
if $SHARED_CHANGED || $API_CHANGED || $COMPONENTS_CHANGED || $CDN_CHANGED; then
echo "cdn=true" >> $GITHUB_OUTPUT
else
echo "cdn=false" >> $GITHUB_OUTPUT
fi
if $SHARED_CHANGED || $API_CHANGED || $COMPONENTS_CHANGED || $CDN_CHANGED || $FRONTEND_CHANGED; then
echo "frontend=true" >> $GITHUB_OUTPUT
else
echo "frontend=false" >> $GITHUB_OUTPUT
fi
- name: Get deploy mode
id: deploy-mode
run: |
GH_EVENT_NAME='${{ github.event_name }}'
GH_REF='${{ github.ref }}'
mode="preview"
if [[ "$GH_EVENT_NAME" == 'push' ]]; then
[[ "$GH_REF" == 'refs/heads/main' ]] && mode="staging"
[[ "$GH_REF" == 'refs/heads/release' ]] && mode="production"
fi
echo "mode=${mode}" >> $GITHUB_OUTPUT
#region Deploy
# cdn needs: API_URL, APP_URL (infer from API_URL to prevent cycle)
# frontend (app) needs: CDN_URL, ?API_URL
# api needs: nothing (APP_URL is passed from components)
#
# build/deploy sequence:
# 1. api
# 2. cdn
# 3. frontend
- name: Deploy API
uses: ./.github/workflows/deploy-worker
id: api
with:
name: 'api'
changed: ${{ steps.changes.outputs.api || steps.changes-review.outputs.api }}
mode: ${{ steps.deploy-mode.outputs.mode }}
skip-deploy: ${{ steps.deploy-check.outputs.should-deploy == 'false' }}
BUILD_AWS_PREFIX: ${{ vars.AWS_PREFIX }}
stagingUrl: ${{ vars.API_STAGING_URL }}
productionUrl: ${{ vars.API_PRODUCTION_URL }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- name: Deploy CDN
uses: ./.github/workflows/deploy-worker
id: cdn
with:
name: 'cdn'
changed: ${{ steps.changes.outputs.cdn || steps.changes-review.outputs.cdn }}
mode: ${{ steps.deploy-mode.outputs.mode }}
skip-deploy: ${{ steps.deploy-check.outputs.should-deploy == 'false' }}
build: 'pnpm -C cdn run build'
BUILD_API_URL: ${{ steps.api.outputs.url }}
BUILD_AWS_PREFIX: ${{ vars.AWS_PREFIX }}
stagingUrl: ${{ vars.CDN_STAGING_URL }}
productionUrl: ${{ vars.CDN_PRODUCTION_URL }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- name: Deploy Frontend
uses: ./.github/workflows/deploy-worker
id: frontend
with:
name: 'frontend'
changed: ${{ steps.changes.outputs.frontend || steps.changes-review.outputs.frontend }}
mode: ${{ steps.deploy-mode.outputs.mode }}
skip-deploy: ${{ steps.deploy-check.outputs.should-deploy == 'false' }}
build: 'pnpm -C frontend run build'
BUILD_API_URL: ${{ steps.api.outputs.url }}
BUILD_CDN_URL: ${{ steps.cdn.outputs.url }}
BUILD_AWS_PREFIX: ${{ vars.AWS_PREFIX }}
stagingUrl: ${{ vars.APP_STAGING_URL }}
productionUrl: ${{ vars.APP_PRODUCTION_URL }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
#endregion
#region Summary
- name: Create Job summary
if: always()
uses: actions/github-script@v8
id: summary
with:
script: |
core.summary.addHeading('Deployment results', 'h2');
core.summary.addRaw(`
| Worker | Alias | URL | Outcome |
| ------ | --- | --- | --- |
| API | ${getTableText('${{ steps.api.outputs.url }}', '${{ steps.api.outputs.versioned-url }}', '${{ steps.api.outcome }}')} |
| CDN | ${getTableText('${{ steps.cdn.outputs.url }}', '${{ steps.cdn.outputs.versioned-url }}', '${{ steps.cdn.outcome }}')} |
| App | ${getTableText('${{ steps.frontend.outputs.url }}', '${{ steps.frontend.outputs.versioned-url }}', '${{ steps.frontend.outcome }}')} |
`, true);
const repoUrl = '${{ github.server_url }}/${{ github.repository }}';
const runId = '${{ github.run_id }}';
core.summary.addSeparator();
core.summary.addLink(`Logs #${runId}`, `${repoUrl}/actions/runs/${runId}`);
await core.setOutput('summary', core.summary.stringify());
await core.summary.write();
function getTableText(url, versionedUrl, outcome) {
if (outcome !== 'success') {
return ['-', '-', outcome].join(' | ');
}
return [
url !== versionedUrl ? getUrlText(url, outcome) : '-',
getUrlText(versionedUrl, outcome),
outcome,
].join(' | ');
}
function getUrlText(url, outcome) {
if (url) {
const RE = /^https?:\/\/([a-z0-9]+)-/i;
const text = url.match(RE)?.[1] ?? url;
return `[${text}](${url})`;
}
return outcome;
}
- name: Create deploy comment
if: github.event_name == 'pull_request'
continue-on-error: true
uses: edumserrano/find-create-or-update-comment@v3
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: '<!-- worker-deploy-summary -->'
comment-author: 'github-actions[bot]'
body: |
<!-- worker-deploy-summary -->
${{ steps.summary.outputs.summary }}
edit-mode: replace
#endregion