-
Notifications
You must be signed in to change notification settings - Fork 169
121 lines (99 loc) · 4.27 KB
/
release.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
name: Release Build
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+.[0-9]+'
jobs:
build-release:
name: Build Release Apk
runs-on: macos-latest
if: github.repository == 'aaa1115910/bv'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: master
fetch-depth: 0
submodules: 'true'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Write google-services.json
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA > app/google-services.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Add signing properties
env:
SIGNING_PROPERTIES: ${{ secrets.SIGNING_PROPERTIES }}
run: |
echo ${{ secrets.SIGNING_PROPERTIES }} > encoded_signing_properties
base64 -Dd -i encoded_signing_properties > signing.properties
- name: Add jks file
run: |
echo ${{ secrets.SIGN_KEY }} > ./encoded_key
base64 -Dd -i encoded_key > key.jks
- name: Build apk
run: ./gradlew assembleDefaultRelease assembleDefaultDebug
- name: Read release apk output metadata
id: apk-meta-release
uses: juliangruber/read-file-action@v1
with:
path: app/build/outputs/apk/default/release/output-metadata.json
- name: Read debug apk output metadata
id: apk-meta-release-debug
uses: juliangruber/read-file-action@v1
with:
path: app/build/outputs/apk/default/debug/output-metadata.json
- name: Parse apk infos
id: apk-infos
run: |
echo "release_info_version_code=${{ fromJson(steps.apk-meta-release.outputs.content).elements[0].versionCode }}" >> $GITHUB_ENV
echo "release_info_version_name=${{ fromJson(steps.apk-meta-release.outputs.content).elements[0].versionName }}" >> $GITHUB_ENV
echo "release_debug_info_version_code=${{ fromJson(steps.apk-meta-release-debug.outputs.content).elements[0].versionCode }}" >> $GITHUB_ENV
echo "release_debug_info_version_name=${{ fromJson(steps.apk-meta-release-debug.outputs.content).elements[0].versionName }}" >> $GITHUB_ENV
- name: Get changelog
id: changelog
run: |
{
echo "changelog<<EOF"
echo "$(git log --pretty=format:"- %s (%h)" ${{ github.event.before }}..${{ github.sha }})"
echo "EOF"
} >> "$GITHUB_ENV"
# upload artifacts release debug
- name: Archive release debug build artifacts
uses: actions/upload-artifact@v4
with:
name: Release debug build artifact
path: app/build/outputs/apk/default/debug/BV_${{ env.release_debug_info_version_code }}_${{ env.release_debug_info_version_name }}_default_universal.apk
# upload artifacts release
- name: Archive release build mappings
uses: actions/upload-artifact@v4
with:
name: Release build mappings
path: app/build/outputs/mapping/defaultRelease
- name: Archive release build artifacts
uses: actions/upload-artifact@v4
with:
name: Release build artifact
path: app/build/outputs/apk/default/release/BV_${{ env.release_info_version_code }}_${{ env.release_info_version_name }}_default_universal.apk
# zip mapping because softprops/action-gh-release can't upload folder
- name: Zip mapping
run: zip -rj mapping.zip app/build/outputs/mapping/defaultRelease
# upload to github release
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
files: |
app/build/outputs/apk/default/debug/BV_${{ env.release_debug_info_version_code }}_${{ env.release_debug_info_version_name }}_default_universal.apk
app/build/outputs/apk/default/release/BV_${{ env.release_info_version_code }}_${{ env.release_info_version_name }}_default_universal.apk
mapping.zip
tag_name: ${{ github.ref_name }}
name: ${{ env.release_info_version_name }}
prerelease: false
body: ${{ env.changelog }}
target_commitish: ${{ github.sha }}