-
Notifications
You must be signed in to change notification settings - Fork 0
257 lines (218 loc) · 8.63 KB
/
release.yaml
File metadata and controls
257 lines (218 loc) · 8.63 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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
name: 🚀 Release
on:
workflow_dispatch:
pull_request:
branches:
- main
- test
- staging
- /^feat-.*$/
push:
branches:
- main
- test
- staging
- /^feat-.*$/
permissions:
actions: write
deployments: write
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DISCORD_DEPLOY_WEBHOOK: ${{ secrets.DISCORD_DEPLOY_WEBHOOK }}
jobs:
check-build:
name: Check & Build
runs-on: ubuntu-latest
timeout-minutes: 30
outputs:
affected-web: ${{ steps.detect-affected.outputs.affected-web }}
affected-native: ${{ steps.detect-affected.outputs.affected-native }}
affected-web-list: ${{ steps.detect-affected.outputs.affected-web-list }}
affected-native-list: ${{ steps.detect-affected.outputs.affected-native-list }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🚧 Setup
uses: ./.github/actions/setup
- name: 🔍 Detect Affected
id: detect-affected
run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
# 检测受影响的 Web 项目 (build + app-build targets)
WEB_PROJECTS=$(nx show projects --affected -t=build,app-build --json --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} 2>/dev/null || echo "[]")
echo "Affected Web Projects: $WEB_PROJECTS"
# 检测受影响的 Native 项目 (native-build target)
NATIVE_PROJECTS=$(nx show projects --affected -t=native-build --json --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} 2>/dev/null || echo "[]")
echo "Affected Native Projects: $NATIVE_PROJECTS"
# 判断是否有受影响的项目
HAS_WEB=$(echo "$WEB_PROJECTS" | jq 'length > 0')
HAS_NATIVE=$(echo "$NATIVE_PROJECTS" | jq 'length > 0')
echo "Has Web Projects: $HAS_WEB"
echo "Has Native Projects: $HAS_NATIVE"
# 设置输出
echo "affected-web=$HAS_WEB" >> $GITHUB_OUTPUT
echo "affected-native=$HAS_NATIVE" >> $GITHUB_OUTPUT
echo "affected-web-list=$WEB_PROJECTS" >> $GITHUB_OUTPUT
echo "affected-native-list=$NATIVE_PROJECTS" >> $GITHUB_OUTPUT
- name: 🔬 Lint
run: pnpm lint
- name: ♻️ Run Circular Dependency Check
run: pnpm nx affected --target=madge
- name: 🔍 Run Typecheck
run: pnpm nx affected --target=typecheck
- name: 🔍 Run Unit Tests
run: echo 'TODO unit tests'
- name: 🏗️ Build Web Libraries
if: steps.detect-affected.outputs.affected-web == 'true'
run: pnpm nx affected --target=build --parallel=1
- name: ⚡ Build Web Apps
if: steps.detect-affected.outputs.affected-web == 'true'
run: pnpm nx affected --target=app-build --parallel=1
- name: 🔍 Run Web apps E2E Tests
if: steps.detect-affected.outputs.affected-web == 'true'
run: pnpm nx affected --target=e2e --parallel=1
- name: 📦 Zip Web Artifacts
run: |
if [ ! -d "dist" ]; then
echo "dist folder not found"
exit 0
fi
zip -r dist-web.zip dist
- name: ⬆️ Upload Web Apps Artifacts
uses: actions/upload-artifact@v5
continue-on-error: true
with:
if-no-files-found: ignore
name: dist-web
path: dist-web.zip
retention-days: 1
release-web:
name: Release Web Apps
runs-on: ubuntu-latest
needs: [check-build]
environment: ${{ (github.ref_name == 'test' || startsWith(github.ref_name, 'feat-')) && 'test' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'main' && 'production' }}
if: ${{ needs.check-build.outputs.affected-web == 'true' && (github.ref_name == 'main' || github.ref_name == 'test' || startsWith(github.ref_name, 'feat-') || github.ref_name == 'staging') && github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🚧 Setup
uses: ./.github/actions/setup
- name: ⬇️ Download Web Artifacts
uses: actions/download-artifact@v5
continue-on-error: true
with:
name: dist-web
- name: 📦 Unzip Web Artifacts
run: |
if [ ! -f "dist-web.zip" ]; then
echo "dist-web.zip not found"
exit 0
fi
unzip dist-web.zip
- name: 🚀 Deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: pnpm nx affected --target=deploy --parallel=1
- name: 🚀 Deploy Web App
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
run: pnpm nx affected --target=app-deploy --parallel=1
build-native:
name: Build Native Apps
environment: ${{ (github.ref_name == 'test' || startsWith(github.ref_name, 'feat-')) && 'test' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'main' && 'production' }}
if: ${{ needs.check-build.outputs.affected-native == 'true' && (github.ref_name == 'main' || github.ref_name == 'test' || startsWith(github.ref_name, 'feat-') || github.ref_name == 'staging') && github.event_name == 'push' }}
needs: [check-build]
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
platform: linux
- os: windows-latest
platform: windows
- os: macos-latest
platform: macos
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: 🚧 Setup
uses: ./.github/actions/setup
- name: 🏗️ Build Native Libraries
run: pnpm nx affected --target=build --parallel=1
- name: ⚡ Build Native Apps
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm nx affected --target=native-build --parallel=1
- name: 🔍 Run Native apps E2E Tests
run: echo 'TODO native apps e2e tests'
- name: 📦 Zip Native Artifacts (${{ matrix.platform }})
shell: bash
run: |
if [ ! -d "dist" ]; then
echo "dist folder not found"
exit 0
fi
if [ "${{ matrix.platform }}" = "windows" ]; then
7z a dist-native-${{ matrix.platform }}.zip dist
else
zip -r dist-native-${{ matrix.platform }}.zip dist
fi
- name: ⬆️ Upload Native Apps Artifacts (${{ matrix.platform }})
uses: actions/upload-artifact@v5
continue-on-error: true
with:
if-no-files-found: ignore
name: dist-native-${{ matrix.platform }}
path: dist-native-${{ matrix.platform }}.zip
retention-days: 1
release-native:
name: Release Native Apps
runs-on: ubuntu-latest
needs: [build-native]
environment: ${{ (github.ref_name == 'test' || startsWith(github.ref_name, 'feat-')) && 'test' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'main' && 'production' }}
if: ${{ github.ref_name == 'main' && github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: ⬇️ Download Native Artifacts (Linux)
uses: actions/download-artifact@v5
continue-on-error: true
with:
name: dist-native-linux
- name: ⬇️ Download Native Artifacts (Windows)
uses: actions/download-artifact@v5
continue-on-error: true
with:
name: dist-native-windows
- name: ⬇️ Download Native Artifacts (macOS)
uses: actions/download-artifact@v5
continue-on-error: true
with:
name: dist-native-macos
- name: 🚀 Create GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Create release with native artifacts
echo "Creating GitHub release with native artifacts"
echo "Affected Native Projects: ${{ needs.check-build.outputs.affected-native-list }}"
# This would typically use gh CLI or actions/create-release
# Implementation depends on your release strategy