This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
383 lines (327 loc) · 10.6 KB
/
publish.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
name: Publish
on:
push:
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- '.github/workflows/tasks.yml'
- '.github/workflows/code_quality.yml'
- '.github/workflows/nightly-merge.yml'
- 'source/**'
- 'qodana.yaml'
pull_request:
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- '.github/workflows/tasks.yml'
- '.github/workflows/code_quality.yml'
- '.github/workflows/nightly-merge.yml'
- 'source/**'
- 'qodana.yaml'
env:
BUGLY_APPID: ${{ secrets.BUGLY_APPID }}
jobs:
validate-gradle-wrapper:
name: Validate_Gradle_Wrapper
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Skip duplicate actions
uses: fkirc/[email protected]
with:
cancel_others: true
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Validate Gradle Wrapper
uses: gradle/[email protected]
check:
name: Check
needs: validate-gradle-wrapper
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Gradle cache
uses: gradle/[email protected]
- name: Check (debug)
run: ./gradlew lintAnalyzeDebug --warning-mode all --scan
- name: Check (release)
run: ./gradlew lintAnalyzeRelease --warning-mode all --scan
build_debug:
name: Build_Debug
if: ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') }}
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Gradle cache
uses: gradle/[email protected]
- run: ./gradlew assembleDebug --scan
- name: Sign apk release
id: signStep
uses: ilharp/sign-android-release@nightly
with:
releaseDir: app/build/outputs/apk/debug
signingKey: ${{ secrets.SIGNING_KEY }}
keyAlias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_PASS }}
keyPassword: ${{ secrets.KEY_PASS }}
buildToolsVersion: 33.0.0
- name: Upload signed apk
uses: actions/[email protected]
with:
name: signed_debug_apk
path: ${{ steps.signStep.outputs.signedFile }}
test_debug:
name: Test_Debug
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Gradle cache
uses: gradle/[email protected]
- run: ./gradlew testDebugUnitTest --warning-mode all
build_release:
name: Build_Release
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Gradle cache
uses: gradle/[email protected]
- run: ./gradlew assembleRelease --scan
- name: Upload mapping to Bugly
uses: qhy040404/[email protected]
with:
appid: ${{ secrets.BUGLY_APPID }}
appkey: ${{ secrets.BUGLY_APPKEY }}
bundleid: 'com.qhy040404.libraryonetap'
version: ${{ github.ref_name }}
platform: 'Android'
inputMapping: 'app/build/outputs/mapping/release'
- name: Rename unsigned apk
run: |
sudo apt-get install rename -y
rename 's/-unsigned.apk/.apk/' app/build/outputs/apk/release/*
- name: Sign apk release
id: signStep
uses: ilharp/sign-android-release@nightly
with:
releaseDir: app/build/outputs/apk/release
signingKey: ${{ secrets.SIGNING_KEY }}
keyAlias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_PASS }}
keyPassword: ${{ secrets.KEY_PASS }}
buildToolsVersion: 33.0.0
- name: Upload signed apk
uses: actions/[email protected]
with:
name: signed_release_apk
path: ${{ steps.signStep.outputs.signedFile }}
test_release:
name: Test_Release
needs: check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 17
- name: Gradle cache
uses: gradle/[email protected]
- run: ./gradlew testReleaseUnitTest --warning-mode all
pre-release:
name: Pre-release
if: ${{ contains(github.ref, 'Pre') }}
needs: [ build_release, test_release ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Download signed release apk
uses: actions/[email protected]
with:
name: signed_release_apk
path: upload
- name: Rename pre-release apk
run: |
sudo apt-get install rename -y
rename 's/-release-signed.apk/-Pre-release-signed.apk/' upload/*
- name: Generate SHA-512 checksums
shell: sh
run: |
set -eu
(
cd "upload"
sha512sum *.apk > SHA512SUMS
)
- name: Upload SHA512SUMS
continue-on-error: true
uses: actions/[email protected]
with:
name: SHA512SUMS
path: upload/SHA512SUMS
- name: Generate release body
continue-on-error: true
uses: qhy040404/[email protected]
with:
changelog: 'Changelog.md'
template: '.github/RELEASE_TEMPLATE.md'
tag: ${{ github.ref_name }}
template-data: '* This is automated GitHub deployment, human-readable changelog should be available soon.'
fore-delimiter: ${{ github.ref_name }}
back-delimiter: '---'
- name: Create GitHub release
id: github_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: v${{ github.ref }}
body_path: .github/RELEASE_TEMPLATE.md
prerelease: true
- name: Upload apk to Github release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.github_release.outputs.upload_url }}
asset_path: upload/Library-One-Tap_v${{ github.ref_name }}-release-signed.apk
asset_name: Library-One-Tap_v${{ github.ref_name }}-release-signed.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload SHA512SUMS to GitHub release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.github_release.outputs.upload_url }}
asset_path: upload/SHA512SUMS
asset_name: SHA512SUMS
asset_content_type: text/plain
release:
name: Release
if: ${{ !contains(github.ref, 'Pre') }}
needs: [ build_release, test_release ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Download signed release apk
uses: actions/[email protected]
with:
name: signed_release_apk
path: upload
- name: Generate SHA-512 checksums
shell: sh
run: |
set -eu
(
cd "upload"
sha512sum *.apk > SHA512SUMS
)
- name: Upload SHA512SUMS
continue-on-error: true
uses: actions/[email protected]
with:
name: SHA512SUMS
path: upload/SHA512SUMS
- name: Generate release body
continue-on-error: true
uses: qhy040404/[email protected]
with:
changelog: 'Changelog.md'
template: '.github/RELEASE_TEMPLATE.md'
tag: ${{ github.ref_name }}
template-data: '* This is automated GitHub deployment, human-readable changelog should be available soon.'
fore-delimiter: ${{ github.ref_name }}
back-delimiter: '---'
- name: Create Github release
id: github_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: v${{ github.ref }}
body_path: .github/RELEASE_TEMPLATE.md
prerelease: false
- name: Upload apk to Github release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.github_release.outputs.upload_url }}
asset_path: upload/Library-One-Tap_v${{ github.ref_name }}-release-signed.apk
asset_name: Library-One-Tap_v${{ github.ref_name }}-release-signed.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload SHA512SUMS to GitHub release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.QHYBOT_RELEASE_TOKEN }}
with:
upload_url: ${{ steps.github_release.outputs.upload_url }}
asset_path: upload/SHA512SUMS
asset_name: SHA512SUMS
asset_content_type: text/plain