-
Notifications
You must be signed in to change notification settings - Fork 25
249 lines (242 loc) · 8.62 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
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
name: Publish
on:
push:
tags:
- v*
# Apply env to all jobs
env:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
PUBLISH_BUCKET: ${{ secrets.PUBLISH_BUCKET }}
jobs:
build-jars:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('subprocess/settings.gradle', 'subprocess/gradle/wrapper/gradle-wrapper.properties', 'subprocess/build.gradle', 'subprocess/gradle.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Build subprocess
env:
GITHUB_BRANCH: "release" # TODO: Resolve this properly for alpha and beta releases
run: |
cd subprocess
./gradlew clean build -si
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: subprocess-jar-${{ matrix.os }}
path: |
subprocess/build/libs/
# Publish
build-releases:
name: Prepare releases
strategy:
matrix:
include:
- os: ubuntu-latest
platform: linux
arch: "--x64 --arm64"
target: "-l"
- os: windows-latest
platform: windows
arch: "--x64"
target: "-w"
- os: macos-latest
platform: macos
arch: "--x64 --arm64"
target: "-m"
runs-on: ${{ matrix.os }}
needs: build-jars
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download jar
uses: actions/download-artifact@v4
with:
name: subprocess-jar-${{ matrix.os }}
path: subprocess/build/libs/
- name: Ensure jar exists
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'linux-latest' }}
run: |
stat subprocess/build/libs/*.jar || exit 1
- name: Ensure jar exists
if: ${{ matrix.os == 'windows-latest' }}
run: |
dir subprocess/build/libs/*.jar || exit 1
- name: Write apple id
if: ${{ matrix.os == 'macos-latest' }}
env:
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
run: |
echo "$APPLE_API_KEY" > apple_api_key.p8
find apple_api_key.p8 -size +0c || exit 1
- name: Download AzureSignTool from nuget
if: ${{ matrix.os == 'windows-latest' }}
run: |
dotnet tool install --global AzureSignTool --version 5.0.0
- name: Build frontend
env:
VUE_APP_PLATFORM: "electron"
APP_TARGET_PLATFORM: ${{ matrix.platform }}
SLACK_ENDPOINT: ${{ secrets.SLACK_ENDPOINT }}
VUE_APP_TARGET_PLATFORM: ${{ matrix.platform }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
CSC_LINK: ${{ secrets.CSC_LINK }}
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
APPLE_API_KEY: "./apple_api_key.p8"
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
AZURE_KEY_VAULT_URL: ${{ secrets.AZURE_KEY_VAULT_URL }}
AZURE_KEY_VAULT_CLIENT_ID: ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }}
AZURE_KEY_VAULT_CLIENT_SECRET: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }}
AZURE_KEY_VAULT_CERTIFICATE_NAME: ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }}
AZURE_KEY_VAULT_TENANT_ID: ${{ secrets.AZURE_KEY_VAULT_TENANT_ID }}
run: |
npm install --global [email protected] || true
pnpm config set store-dir .pnpm-store
pnpm install --no-frozen-lockfile
pnpm gen:license
pnpm build --publish always ${{ matrix.target }} ${{ matrix.arch }}
- name: Upload Mac artifacts
if: ${{ matrix.os == 'macos-latest' }}
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.os }}
path: |
release/ftb-app-*.dmg
release/ftb-app-*.zip
release/*.blockmap
release/*-mac.yml
- name: Upload Windows artifacts
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'windows-latest' }}
with:
name: release-${{ matrix.os }}
path: |
release/ftb-app-*.exe
release/*.blockmap
release/latest.yml
release/alpha.yml
release/beta.yml
- name: Upload Linux artifacts
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.os }}
path: |
release/ftb-app-*.deb
release/ftb-app-*.AppImage
release/ftb-app-*.rpm
release/*-linux.yml
release/*-linux-*.yml
build-overwolf:
name: Prepare Overwolf
# Skip this job if the commit message contains [-skip overwolf]
if: "!contains(github.event.head_commit.message, '[-skip overwolf]')"
needs:
- build-jars
- build-releases
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: subprocess-jar-ubuntu-latest
path: subprocess/build/libs/
- name: Build App (Overwolf)
env:
OW_CLI_API_KEY: ${{ secrets.OW_CLI_API_KEY }}
OW_CLI_EMAIL: ${{ secrets.OW_CLI_EMAIL }}
APP_TARGET_PLATFORM: "overwolf"
VUE_APP_TARGET_PLATFORM: "overwolf"
VUE_APP_PLATFORM: "overwolf"
run: |
cp subprocess/build/libs/meta.json overwolf/
cp subprocess/build/libs/java-licenses.json overwolf/
npm install --global [email protected] || true
pnpm config set store-dir .pnpm-store
pnpm install --no-frozen-lockfile
pnpm gen:license
node tooling/overwolf/patchManifest.js
pnpm overwolf:build
node tooling/overwolf/packageOpk.js
echo "Signing OPK.."
pnpm ow opk sign -o overwolf/signed.opk overwolf/*.opk
- name: Upload Overwolf artifact
uses: actions/upload-artifact@v4
with:
name: overwolf-opk
path: overwolf/signed.opk
# Publish to S3
release-electron:
name: Publish Electron
if: |
!cancelled() && !contains(github.event.head_commit.message, '[-skip release]') && needs.build-jars.result == 'success'
runs-on: ubuntu-latest
needs: build-releases
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: release-${{ matrix.os }}
path: release/
- name: Get B2 client
shell: bash
run: |
wget -q -O /usr/local/bin/b2 https://github.com/Backblaze/B2_Command_Line_Tool/releases/latest/download/b2-linux
chmod +x /usr/local/bin/b2
- name: Upload
shell: bash
run: |
ls -la release
b2 authorize-account ${{ secrets.AWS_ACCESS_KEY_ID }} ${{ secrets.AWS_SECRET_ACCESS_KEY }} > /dev/null 2>&1
b2 sync --replace-newer --no-progress release b2://${{ secrets.PUBLISH_BUCKET }}/app
# Publish to Overwolf
release-overwolf:
name: Publish Overwolf
# Don't run if cancelled or if the commit message contains [-skip release], also, don't run if the build-overwolf job was skipped
if: |
!cancelled() && !contains(github.event.head_commit.message, '[-skip release]') && needs.build-overwolf.result == 'success'
runs-on: ubuntu-latest
needs:
- build-overwolf
- release-electron # There is no point in releasing Overwolf if the Electron build failed
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: overwolf-opk
path: overwolf/
- name: Release
env:
OW_CLI_API_KEY: ${{ secrets.OW_CLI_API_KEY }}
OW_CLI_EMAIL: ${{ secrets.OW_CLI_EMAIL }}
run: |
npm install --global [email protected] || true
pnpm config set store-dir .pnpm-store
pnpm install --no-frozen-lockfile
pnpm ow opk upload -w true overwolf/signed.opk