-
Notifications
You must be signed in to change notification settings - Fork 25
222 lines (218 loc) · 6.78 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
name: Release (Linux & Windows)
on:
push:
tags:
- v*
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 }}
VUE_APP_SENTRY_DSN: ${{ secrets.VUE_APP_SENTRY_DSN }}
PUBLISH_BUCKET: ${{ secrets.PUBLISH_BUCKET }}
PUBLISH_ENDPOINT: ${{ secrets.PUBLISH_ENDPOINT }}
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Cache for Gradle
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build subprocess
env:
SUBPROCESS_SENTRY_DSN: ${{ secrets.SUBPROCESS_SENTRY_DSN }}
GITHUB_BRANCH: "release" # TODO: Resolve this properly for alpha and beta releases
run: |
cd subprocess
./gradlew clean build -si
- name: Build App (Windows & Linux)
env:
APP_TARGET_PLATFORM: "linux"
run: |
npm install --global pnpm || true
pnpm config set store-dir .pnpm-store
pnpm install
pnpm gen:license
pnpm build --publish always -l --x64 --arm64
- uses: actions/cache/save@v4
id: cache
name: Save pnpm modules
with:
path: .pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
# Upload the subprocess/build/libs/ directory as an artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: subprocess-jar
path: |
subprocess/build/libs/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: release-linux
path: |
release/ftb-app-*.deb
release/ftb-app-*.AppImage
release/ftb-app-*.rpm
release/*-linux.yml
release/*-linux-*.yml
build-windows:
runs-on: windows-latest
# Only run this job if the previous job was successful
needs: build-linux
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: subprocess-jar
path: subprocess/build/libs/
- name: Build App (Windows)
env:
APP_TARGET_PLATFORM: "windows"
VUE_APP_TARGET_PLATFORM: "windows"
run: |
npm install --global pnpm || true
pnpm config set store-dir .pnpm-store
pnpm install
pnpm gen:license
pnpm build --publish always -w --x64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: release-windows
path: |
release/ftb-app-*.exe
release/*.blockmap
release/latest.yml
release/alpha.yml
release/beta.yml
build-macos:
runs-on: macos-latest
# Only run this job if the previous job was successful
needs:
- build-linux
- build-windows
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: subprocess-jar
path: subprocess/build/libs/
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build App (MacOS)
env:
APP_TARGET_PLATFORM: "macos"
VUE_APP_TARGET_PLATFORM: "macos"
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
CSC_LINK: ${{ secrets.CSC_LINK }}
APPLE_API_ISSUER: ${{ secrets.APPLE_API_ISSUER }}
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
APPLE_API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}
run: |
npm install --global pnpm || true
pnpm config set store-dir .pnpm-store
pnpm install
pnpm gen:license
echo "$APPLE_API_KEY" > apple_api_key.p8
pnpm build --publish always -m --x64 --arm64
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: release-macos
path: |
release/ftb-app-*.dmg
release/ftb-app-*.zip
release/*.blockmap
release/*-mac.yml
build-overwolf:
needs:
- build-linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: subprocess-jar
path: subprocess/build/libs/
- name: Restore pnpm
uses: actions/cache/restore@v4
id: cache
with:
path: .pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
- 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"
run: |
cp subprocess/build/libs/meta.json overwolf/
cp subprocess/build/libs/java-licenses.json overwolf/
npm install --global pnpm || true
pnpm config set store-dir .pnpm-store
pnpm install
pnpm gen:license
node overwolf/patchManifest.js
pnpm overwolf:build
node overwolf/packageOpk.js
echo "Signing OPK.."
pnpm ow opk sign -o overwolf/signed.opk overwolf/*.opk
pnpm ow opk upload -w true overwolf/signed.opk
release-artifacts:
needs:
- build-linux
- build-windows
- build-macos
runs-on: ubuntu-latest
steps:
- name: Download linux releases
uses: actions/download-artifact@v4
with:
name: release-linux
path: release/
- name: Download windows releases
uses: actions/download-artifact@v4
with:
name: release-windows
path: release/
- name: Download macos releases
uses: actions/download-artifact@v4
with:
name: release-macos
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: |
b2 authorize-account ${{ secrets.AWS_ACCESS_KEY_ID }} ${{ secrets.AWS_SECRET_ACCESS_KEY }} > /dev/null 2>&1
b2 sync --replaceNewer --noProgress release b2://${{ secrets.PUBLISH_BUCKET }}/app > /dev/null 2>&1