-
Notifications
You must be signed in to change notification settings - Fork 32
392 lines (336 loc) · 12.7 KB
/
release.yaml
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
384
385
386
387
388
389
390
391
392
name: Release
# Only trigger this workflow when a tag is pushed in the format `vA.B.C`.
on:
push:
# Syntax: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
inputs:
version:
description: 'Version - in the form of v1.2.3'
required: true
type: string
# Configure constants for this workflow.
env:
# The base filename of the binary produced by `cargo build`.
BINARY: bevy_template
# The filename prefix to use for packages produced by this workflow.
PACKAGE_NAME: bevy-template
# The itch.io page to upload to, in the format: `user-name/project-name`.
# Comment this out to disable.
ITCH_TARGET: the-bevy-flock/bevy-template
# Whether packages produced by this workflow should be uploaded to the Github release.
UPLOAD_PACKAGES_TO_GITHUB_RELEASE: true
# Before enabling LFS, please take a look at GitHub's documentation for costs and quota limits:
# https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage
USE_GIT_LFS: false
jobs:
# Extract the version number from the pushed tag.
get-version:
runs-on: ubuntu-latest
steps:
- name: Get version number from tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "${GITHUB_OUTPUT}"
outputs:
version: ${{ inputs.version || steps.tag.outputs.tag }}
# Build for web.
build-for-web:
runs-on: ubuntu-latest
needs: get-version
env:
TARGET: wasm32-unknown-unknown
PROFILE: wasm-release
PLATFORM: web
VERSION: ${{ needs.get-version.outputs.version }}
steps:
- name: Set up environment
run: echo "OUT_DIR=build/${PLATFORM}" >> "${GITHUB_ENV}"
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: ${{ env.USE_GIT_LFS }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.TARGET }}
- name: Install dependencies
run: |
cargo install wasm-bindgen-cli
- name: Build
run: |
cargo build --profile="${PROFILE}" --target="${TARGET}" --no-default-features
- name: Prepare package
run: |
mkdir -p "${OUT_DIR}"
wasm-bindgen "target/${TARGET}/${PROFILE}/${BINARY}.wasm" --out-dir "${OUT_DIR}" --out-name "${BINARY}" --no-typescript --target web
cp -r assets web/* "${OUT_DIR}" || true # Ignore error if `assets` or `web` folder does not exist
- name: Optimize Wasm
uses: NiklasEi/wasm-opt-action@v2
with:
file: ${{ env.OUT_DIR }}/*.wasm
- name: Compress package
run: |
zip --recurse-paths "${PACKAGE_NAME}-${PLATFORM}.zip "${OUT_DIR}"
- name: Upload package to artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
name: ${{ env.PLATFORM }}
retention-days: 1
- name: Upload package to Github release
if: ${{ env.UPLOAD_PACKAGES_TO_GITHUB_RELEASE == 'true' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.VERSION }}-${{ env.PLATFORM }}.zip
release_name: ${{ env.VERSION }}
tag: ${{ github.ref }}
overwrite: true
# Build for Linux.
build-for-linux:
runs-on: ubuntu-latest
needs: get-version
env:
TARGET: x86_64-unknown-linux-gnu
PROFILE: release
PLATFORM: linux
VERSION: ${{ needs.get-version.outputs.version }}
steps:
- name: Set up environment
run: echo "OUT_DIR=build/${PLATFORM}" >> "${GITHUB_ENV}"
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: ${{ env.USE_GIT_LFS }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.TARGET }}
- name: Install dependencies
run: |
sudo apt-get update; sudo apt-get install libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- name: Build
run: |
cargo build --profile="${PROFILE}" --target="${TARGET}" --no-default-features --features=bevy/wayland
- name: Prepare package
run: |
mkdir -p "${OUT_DIR}"
cp "target/${TARGET}/${PROFILE}/${BINARY}" "${OUT_DIR}"
cp -r assets "${OUT_DIR}" || true # Ignore error if `assets` folder does not exist
- name: Compress package
run: |
zip --recurse-paths "${PACKAGE_NAME}-${PLATFORM}.zip" "${OUT_DIR}"
- name: Upload package to artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
name: ${{ env.PLATFORM }}
retention-days: 1
- name: Upload package to Github release
if: ${{ env.UPLOAD_PACKAGES_TO_GITHUB_RELEASE == 'true' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.VERSION }}-${{ env.PLATFORM }}.zip
release_name: ${{ env.VERSION }}
tag: ${{ github.ref }}
overwrite: true
# Build for Windows.
build-for-windows:
runs-on: windows-latest
needs: get-version
env:
TARGET: x86_64-pc-windows-msvc
PROFILE: release
PLATFORM: windows
VERSION: ${{ needs.get-version.outputs.version }}
steps:
- name: Set up environment
run: echo "OUT_DIR=build/${PLATFORM}" >> "${GITHUB_ENV}"
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: ${{ env.USE_GIT_LFS }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.TARGET }}
- name: Build
run: |
cargo build --profile="${PROFILE}" --target="${TARGET}" --no-default-features
- name: Prepare package
run: |
mkdir -p "${OUT_DIR}"
cp "target/${TARGET}/${PROFILE}/${BINARY}.exe" "${OUT_DIR}"
cp -r assets "${OUT_DIR}" || true # Ignore error if `assets` folder does not exist
- name: Compress package
run: |
Compress-Archive -Path "${OUT_DIR}/*" -DestinationPath "${PACKAGE_NAME}-${PLATFORM}.zip"
- name: Upload package to artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
name: ${{ env.PLATFORM }}
retention-days: 1
- name: Upload package to Github release
if: ${{ env.UPLOAD_PACKAGES_TO_GITHUB_RELEASE == 'true' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.zip
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.VERSION }}-${{ env.PLATFORM }}.zip
release_name: ${{ env.VERSION }}
tag: ${{ github.ref }}
overwrite: true
# Build for MacOS x86_64.
build-for-macOS-intel:
runs-on: macOS-latest
needs: get-version
env:
TARGET: x86_64-apple-darwin
PROFILE: release
PLATFORM: macOS-intel
VERSION: ${{ needs.get-version.outputs.version }}
CFLAGS: -fno-stack-check
MACOSX_DEPLOYMENT_TARGET: 10.9
steps:
- name: Set up environment
run: echo "OUT_DIR=${BINARY}.app/Contents/MacOS" >> "${GITHUB_ENV}"
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: ${{ env.USE_GIT_LFS }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.TARGET }}
- name: Build
run: |
cargo build --profile="${PROFILE}" --target="${TARGET}" --no-default-features
- name: Prepare package
run: |
mkdir -p "${OUT_DIR}"
cp "target/${TARGET}/${PROFILE}/${BINARY}" "${OUT_DIR}"
cp -r assets "${OUT_DIR}" || true # Ignore error if `assets` folder does not exist
- name: Compress package
run: |
hdiutil create -fs HFS+ -volname "${BINARY}" -srcfolder "${BINARY}.app" "${PACKAGE_NAME}-${PLATFORM}.dmg"
- name: Upload package to artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.dmg
name: ${{ env.PLATFORM }}
retention-days: 1
- name: Upload package to Github release
if: ${{ env.UPLOAD_PACKAGES_TO_GITHUB_RELEASE == 'true' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.dmg
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.VERSION }}-${{ env.PLATFORM }}.dmg
release_name: ${{ env.VERSION }}
tag: ${{ github.ref }}
overwrite: true
# Build for MacOS Apple Silicon.
build-for-macOS-apple-silicon:
runs-on: macOS-latest
needs: get-version
env:
TARGET: aarch64-apple-darwin
PROFILE: release
PLATFORM: macOS-apple-silicon
VERSION: ${{ needs.get-version.outputs.version }}
# MacOS 11.0 Big Sur is the first version to support universal binaries.
MACOSX_DEPLOYMENT_TARGET: 11.0
steps:
- name: Set up environment
run: echo "OUT_DIR=${BINARY}.app/Contents/MacOS" >> "${GITHUB_ENV}"
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: ${{ env.USE_GIT_LFS }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ env.TARGET }}
- name: Build
run: |
cargo build --profile="${PROFILE}" --target="${TARGET}" --no-default-features
- name: Prepare package
run: |
mkdir -p "${OUT_DIR}"
cp "target/${TARGET}/${PROFILE}/${BINARY}" "${OUT_DIR}"
cp -r assets "${OUT_DIR}" || true # Ignore error if `assets` folder does not exist
- name: Compress package
run: |
hdiutil create -fs HFS+ -volname "${BINARY}" -srcfolder "${BINARY}.app" "${PACKAGE_NAME}-${PLATFORM}.dmg"
- name: Upload package to artifacts
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.dmg
name: ${{ env.PLATFORM }}
retention-days: 1
- name: Upload package to Github release
if: ${{ env.UPLOAD_PACKAGES_TO_GITHUB_RELEASE == 'true' }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PACKAGE_NAME }}-${{ env.PLATFORM }}.dmg
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.VERSION }}-${{ env.PLATFORM }}.dmg
release_name: ${{ env.VERSION }}
tag: ${{ github.ref }}
overwrite: true
# Check if upload to itch.io is configured.
check-if-upload-to-itch-is-configured:
runs-on: ubuntu-latest
steps:
- name: Check ITCH_TARGET environment variable
id: check-env
run: |
if [[ -z "${ITCH_TARGET}" ]]; then
echo "has-itch-target=no" >> "${GITHUB_OUTPUT}"
else
echo "has-itch-target=yes" >> "${GITHUB_OUTPUT}"
fi
outputs:
should-upload: ${{ steps.check-env.outputs.has-itch-target }}
# Upload artifacts to itch.io.
upload-to-itch:
runs-on: ubuntu-latest
needs:
- get-version
- check-if-upload-to-itch-is-configured
- build-for-web
- build-for-linux
- build-for-windows
- build-for-macOS-intel
- build-for-macOS-apple-silicon
env:
VERSION: ${{ needs.get-version.outputs.version }}
if: ${{ needs.check-if-upload-to-itch-is-configured.outputs.should-upload == 'yes' }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: ./builds
- name: Install butler
run: |
curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default
unzip butler.zip
chmod +x butler
./butler -V
- name: Upload artifacts to itch.io
env:
BUTLER_API_KEY: ${{ secrets.BUTLER_CREDENTIALS }}
run: |
for channel in $(ls builds); do
./butler push \
--fix-permissions \
--userversion="${{ env.VERSION }}" \
builds/"${channel}"/* \
${{ env.ITCH_TARGET }}:"${channel}"
done