-
Notifications
You must be signed in to change notification settings - Fork 252
551 lines (491 loc) · 20.1 KB
/
deploy.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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
name: deploy
on:
schedule:
- cron: '0 21 * * TUE' # Run every Tuesday at 21:00 (UTC)
push:
tags:
- 'v*.*.*'
- 'p*'
jobs:
windows-rav1e-ch-binary:
if: github.repository_owner == 'xiph'
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: ilammy/setup-nasm@v1
- name: Install stable
uses: dtolnay/rust-toolchain@stable
- name: Build rav1e-ch (unstable)
env:
RUSTFLAGS: "-C target-cpu=x86-64-v3"
CARGO_PROFILE_RELEASE_LTO: "true"
CARGO_PROFILE_RELEASE_CODEGEN_UNITS: "1"
run: cargo build --release --features=unstable,channel-api --bin=rav1e-ch
- name: Upload rav1e-ch msvc binary (unstable)
uses: actions/upload-artifact@v3
with:
name: rav1e-ch (unstable) (AVX2)
path: target/release/rav1e-ch.exe
windows-binaries:
strategy:
matrix:
conf:
- msvc
- gnu
target_cpu:
- x86-64
- x86-64-v2
- x86-64-v3
include:
- conf: msvc
name: msvc-generic
toolchain: stable
profile: release
target_cpu: x86-64
- conf: msvc
name: msvc-sse4
toolchain: stable
profile: release
target_cpu: x86-64-v2
- conf: msvc
name: msvc-avx2
toolchain: stable
profile: release
target_cpu: x86-64-v3
- conf: gnu
name: gnu-generic
toolchain: stable-x86_64-pc-windows-gnu
profile: release-no-lto
target_cpu: x86-64
- conf: gnu
name: gnu-sse4
toolchain: stable-x86_64-pc-windows-gnu
profile: release-no-lto
target_cpu: x86-64-v2
- conf: gnu
name: gnu-avx2
toolchain: stable
profile: release-strip
target_cpu: x86-64-v3
if: github.repository_owner == 'xiph'
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: ilammy/setup-nasm@v1
- name: Install cargo-c
run: |
$LINK = "https://github.com/lu-zero/cargo-c/releases/latest/download"
$CARGO_C_FILE = "cargo-c-windows-msvc"
curl -LO "$LINK/$CARGO_C_FILE.zip"
7z e -y "$CARGO_C_FILE.zip" -o"${env:USERPROFILE}\.cargo\bin"
- name: Install ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Build rav1e
env:
RUSTFLAGS: "-C target-cpu=${{ matrix.target_cpu }}"
run: cargo build --profile ${{ matrix.profile }}
- name: Run cargo-c
env:
RUSTFLAGS: "-C target-cpu=${{ matrix.target_cpu }}"
run: |
cargo fetch
cargo cinstall --profile ${{ matrix.profile }} --destdir="C:\" --offline
- name: Rename cargo-c folder
run: Rename-Item "C:\usr\local" "C:\usr\rav1e-windows-${{ matrix.conf }}-sdk"
- name: Get the version
if: startsWith(github.ref, 'refs/tags/v')
shell: bash
id: tagName
run: |
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Package pre-release binaries
if: >
startsWith(github.ref, 'refs/tags/p') || github.event_name == 'schedule'
run: |
7z a rav1e-windows-${{ matrix.name }}.zip `
"C:\usr\rav1e-windows-${{ matrix.conf }}-sdk"
- name: Package release binaries
if: startsWith(github.ref, 'refs/tags/v')
run: |
$ZIP_PREFIX = "rav1e-${{ steps.tagName.outputs.version }}-windows"
7z a "$ZIP_PREFIX-${{ matrix.name }}.zip" `
"C:\usr\rav1e-windows-${{ matrix.conf }}-sdk"
- name: Upload rav1e msvc binary
if: matrix.conf == 'msvc'
uses: actions/upload-artifact@v3
with:
name: rav1e (Windows-${{ matrix.name }})
path: target/${{ matrix.profile }}/rav1e.exe
- name: Upload pre-release binaries
if: >
startsWith(github.ref, 'refs/tags/p') || github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: rav1e (Windows-${{ matrix.name }})
path: rav1e-windows-${{ matrix.name }}.zip
- name: Upload release binaries
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v3
with:
name: rav1e ${{ steps.tagName.outputs.version }} (Windows-${{ matrix.name }})
path: rav1e-${{ steps.tagName.outputs.version }}-windows-${{ matrix.name }}.zip
linux-binaries:
strategy:
fail-fast: false
matrix:
target:
- i686-unknown-linux-musl
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl
target_cpu:
- default
- x86-64
- x86-64-v2
- x86-64-v3
build:
- binary
- sdk
include:
- build: binary
pkgname: rav1e
- build: sdk
pkgname: librav1e
- target: i686-unknown-linux-musl
name: linux-i686
- target: aarch64-unknown-linux-musl
name: linux-aarch64
- target: x86_64-unknown-linux-musl
target_cpu: x86-64
name: linux-generic
- target: x86_64-unknown-linux-musl
target_cpu: x86-64-v2
name: linux-sse4
- target: x86_64-unknown-linux-musl
target_cpu: x86-64-v3
name: linux-avx2
exclude:
- target: x86_64-unknown-linux-musl
target_cpu: default
- target: aarch64-unknown-linux-musl
target_cpu: x86-64
- target: aarch64-unknown-linux-musl
target_cpu: x86-64-v2
- target: aarch64-unknown-linux-musl
target_cpu: x86-64-v3
- target: i686-unknown-linux-musl
target_cpu: x86-64
- target: i686-unknown-linux-musl
target_cpu: x86-64-v2
- target: i686-unknown-linux-musl
target_cpu: x86-64-v3
if: github.repository_owner == 'xiph'
runs-on: ubuntu-latest
name: linux-binaries (${{ matrix.build }}, ${{ matrix.name }})
steps:
- uses: actions/checkout@v3
- uses: ilammy/setup-nasm@v1
- name: Install ${{ matrix.target }} target
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}
- name: Install cross
if: matrix.target != 'x86_64-unknown-linux-musl'
env:
LINK: https://github.com/cross-rs/cross/releases/download
CROSS_VERSION: 0.2.5
CROSS_FILE: cross-x86_64-unknown-linux-musl
run: |
curl -L "$LINK/v$CROSS_VERSION/$CROSS_FILE.tar.gz" |
tar xz -C $HOME/.cargo/bin
- name: Install cargo-c
if: matrix.build == 'sdk'
env:
LINK: https://github.com/lu-zero/cargo-c/releases/latest/download
CARGO_C_FILE: cargo-c-x86_64-unknown-linux-musl.tar.gz
run: |
curl -L $LINK/$CARGO_C_FILE | tar xz -C ~/.cargo/bin
- name: Build rav1e for non-native architectures
if: matrix.build == 'binary' && matrix.target != 'x86_64-unknown-linux-musl'
run: cross build --target ${{ matrix.target }} --profile release-strip
- name: Build librav1e for non-native architectures
if: matrix.build == 'sdk' && matrix.target != 'x86_64-unknown-linux-musl'
env:
# We get around cross's lack of support for third-party subcommands by
# defining a custom Dockerfile whose entrypoint rewrites the
# "cargo build" command to "cargo cinstall"
CROSS_BUILD_DOCKERFILE: ./cross/Dockerfile.libs
CARGO_TARGET_I686_UNKNOWN_LINUX_MUSL_RUSTFLAGS:
"-C target-feature=-crt-static"
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_RUSTFLAGS:
"-C target-feature=-crt-static"
run: |
cp ~/.cargo/bin/cargo-c* $(dirname $(rustup which cargo))
cross build --target ${{ matrix.target }} --profile release-strip
- name: Build rav1e
if: matrix.build == 'binary' && matrix.target == 'x86_64-unknown-linux-musl'
env:
RUSTFLAGS: "-C target-cpu=${{ matrix.target_cpu }}"
run: cargo build --target ${{ matrix.target }} --profile release-strip
- name: Build librav1e
if: matrix.build == 'sdk' && matrix.target == 'x86_64-unknown-linux-musl'
env:
RUSTFLAGS:
"-C target-feature=-crt-static -C target-cpu=${{ matrix.target_cpu }}"
run: |
cargo cinstall --target ${{ matrix.target }} \
--prefix dist \
--library-type staticlib \
--library-type cdylib \
--profile release-strip
- name: Get pre-release artifact filename
if: |
startsWith(github.ref, 'refs/tags/p') ||
github.event_name == 'schedule'
run: |
echo "ARTIFACT_FILE=${{ matrix.pkgname }}-${{ matrix.name }}.tar.gz" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ matrix.pkgname }} (${{ matrix.name }})" >> $GITHUB_ENV
- name: Get release artifact filename
if: startsWith(github.ref, 'refs/tags/v')
run: |
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
echo "ARTIFACT_FILE=${{ matrix.pkgname }}-$VERSION-${{ matrix.name }}.tar.gz" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ matrix.pkgname }} $VERSION (${{ matrix.name }})" >> $GITHUB_ENV
- name: Create a binary tar
if: >
matrix.build == 'binary' &&
(startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule')
run: |
cd target/${{ matrix.target }}/release-strip
tar -czvf $GITHUB_WORKSPACE/$ARTIFACT_FILE rav1e
- name: Create a lib tar
if: >
matrix.build == 'sdk' &&
(startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule')
run: |
cd dist
tar -czvf $GITHUB_WORKSPACE/$ARTIFACT_FILE *
- name: Upload artifact
if: >
startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_FILE }}
macos-binaries:
if: github.repository_owner == 'xiph'
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
target:
- x86_64-apple-darwin
- aarch64-apple-darwin
build:
- binary
- sdk
include:
- target: x86_64-apple-darwin
name: macos
- target: aarch64-apple-darwin
name: macos-aarch64
- build: binary
pkgname: rav1e
ext: zip
- build: sdk
pkgname: librav1e
ext: tar.gz
steps:
- uses: actions/checkout@v3
- name: Install nasm
run: brew install nasm
- name: Install ${{ matrix.target }} target
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}
- name: Install cargo-c
if: matrix.build == 'sdk'
env:
LINK: https://github.com/lu-zero/cargo-c/releases/latest/download
CARGO_C_FILE: cargo-c-macos.zip
run: |
curl -sLo cargo-c-macos.zip $LINK/$CARGO_C_FILE
unzip -o cargo-c-macos.zip -d ~/.cargo/bin
rm cargo-c-macos.zip
- name: Build rav1e
if: matrix.build == 'binary'
run: cargo build --target ${{ matrix.target }} --profile release-strip
- name: Build librav1e
if: matrix.build == 'sdk'
run: |
cargo cinstall --target ${{ matrix.target }} \
--prefix dist \
--library-type staticlib \
--library-type cdylib \
--profile release-strip
- name: Get pre-release artifact filename
if: |
startsWith(github.ref, 'refs/tags/p') ||
github.event_name == 'schedule'
run: |
echo "ARTIFACT_FILE=${{ matrix.pkgname }}-${{ matrix.name }}.${{ matrix.ext }}" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ matrix.pkgname }} (${{ matrix.name }})" >> $GITHUB_ENV
- name: Get release artifact filename
if: startsWith(github.ref, 'refs/tags/v')
run: |
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
echo "ARTIFACT_FILE=${{ matrix.pkgname }}-$VERSION-${{ matrix.name }}.${{ matrix.ext }}" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ matrix.pkgname }} $VERSION (${{ matrix.name }})" >> $GITHUB_ENV
- name: Create a binary zip
if: >
matrix.build == 'binary' &&
(startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule')
run: |
cd target/${{ matrix.target }}/release-strip
zip -9 $GITHUB_WORKSPACE/$ARTIFACT_FILE rav1e
- name: Create a lib tar
if: >
matrix.build == 'sdk' &&
(startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule')
run: |
cd dist
tar -czvf $GITHUB_WORKSPACE/$ARTIFACT_FILE *
- name: Upload artifact
if: >
startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_FILE }}
deploy:
needs: [windows-rav1e-ch-binary, windows-binaries, linux-binaries, macos-binaries]
if: github.repository_owner == 'xiph'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Get the version
if: startsWith(github.ref, 'refs/tags/v')
id: tagName
run: |
VERSION=$(cargo pkgid | cut -d# -f2 | cut -d: -f2)
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Get date for a scheduled pre-release
if: github.event_name == 'schedule'
id: tagDate
run: |
DATE=$(date "+%Y%m%d")
echo "date=$DATE" >> $GITHUB_OUTPUT
- name: Create a scheduled pre-release
if: github.event_name == 'schedule'
uses: softprops/action-gh-release@v1
with:
name: Weekly pre-release
prerelease: true
tag_name: p${{ steps.tagDate.outputs.date }}
files: |
Cargo.lock
rav1e (Windows-msvc-generic)/rav1e.exe
rav1e-ch (unstable) (AVX2)/rav1e-ch.exe
rav1e (linux-generic)/rav1e-linux-generic.tar.gz
rav1e (linux-i686)/rav1e-linux-i686.tar.gz
rav1e (linux-sse4)/rav1e-linux-sse4.tar.gz
rav1e (linux-avx2)/rav1e-linux-avx2.tar.gz
rav1e (linux-aarch64)/rav1e-linux-aarch64.tar.gz
rav1e (macos)/rav1e-macos.zip
rav1e (macos-aarch64)/rav1e-macos-aarch64.zip
librav1e (linux-generic)/librav1e-linux-generic.tar.gz
librav1e (linux-i686)/librav1e-linux-i686.tar.gz
librav1e (linux-sse4)/librav1e-linux-sse4.tar.gz
librav1e (linux-avx2)/librav1e-linux-avx2.tar.gz
librav1e (linux-aarch64)/librav1e-linux-aarch64.tar.gz
librav1e (macos)/librav1e-macos.tar.gz
librav1e (macos-aarch64)/librav1e-macos-aarch64.tar.gz
rav1e (Windows-msvc-generic)/rav1e-windows-msvc-generic.zip
rav1e (Windows-msvc-sse4)/rav1e-windows-msvc-sse4.zip
rav1e (Windows-msvc-avx2)/rav1e-windows-msvc-avx2.zip
rav1e (Windows-gnu-generic)/rav1e-windows-gnu-generic.zip
rav1e (Windows-gnu-sse4)/rav1e-windows-gnu-sse4.zip
rav1e (Windows-gnu-avx2)/rav1e-windows-gnu-avx2.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create a pre-release
if: startsWith(github.ref, 'refs/tags/p')
uses: softprops/action-gh-release@v1
with:
name: Weekly pre-release
prerelease: true
files: |
Cargo.lock
rav1e (Windows-msvc-generic)/rav1e.exe
rav1e-ch (unstable) (AVX2)/rav1e-ch.exe
rav1e (linux-generic)/rav1e-linux-generic.tar.gz
rav1e (linux-i686)/rav1e-linux-i686.tar.gz
rav1e (linux-sse4)/rav1e-linux-sse4.tar.gz
rav1e (linux-avx2)/rav1e-linux-avx2.tar.gz
rav1e (linux-aarch64)/rav1e-linux-aarch64.tar.gz
rav1e (macos)/rav1e-macos.zip
rav1e (macos-aarch64)/rav1e-macos-aarch64.zip
librav1e (linux-generic)/librav1e-linux-generic.tar.gz
librav1e (linux-i686)/librav1e-linux-i686.tar.gz
librav1e (linux-sse4)/librav1e-linux-sse4.tar.gz
librav1e (linux-avx2)/librav1e-linux-avx2.tar.gz
librav1e (linux-aarch64)/librav1e-linux-aarch64.tar.gz
librav1e (macos)/librav1e-macos.tar.gz
librav1e (macos-aarch64)/librav1e-macos-aarch64.tar.gz
rav1e (Windows-msvc-generic)/rav1e-windows-msvc-generic.zip
rav1e (Windows-msvc-sse4)/rav1e-windows-msvc-sse4.zip
rav1e (Windows-msvc-avx2)/rav1e-windows-msvc-avx2.zip
rav1e (Windows-gnu-generic)/rav1e-windows-gnu-generic.zip
rav1e (Windows-gnu-sse4)/rav1e-windows-gnu-sse4.zip
rav1e (Windows-gnu-avx2)/rav1e-windows-gnu-avx2.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create a release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
name: v${{ steps.tagName.outputs.version }}
files: |
Cargo.lock
rav1e (Windows-msvc-generic)/rav1e.exe
rav1e-ch (unstable) (AVX2)/rav1e-ch.exe
rav1e ${{ steps.tagName.outputs.version }} (linux-generic)/rav1e-${{ steps.tagName.outputs.version }}-linux-generic.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (linux-i686)/rav1e-${{ steps.tagName.outputs.version }}-linux-i686.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (linux-sse4)/rav1e-${{ steps.tagName.outputs.version }}-linux-sse4.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (linux-avx2)/rav1e-${{ steps.tagName.outputs.version }}-linux-avx2.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (linux-aarch64)/rav1e-${{ steps.tagName.outputs.version }}-linux-aarch64.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (macos)/rav1e-${{ steps.tagName.outputs.version }}-macos.zip
rav1e ${{ steps.tagName.outputs.version }} (macos-aarch64)/rav1e-${{ steps.tagName.outputs.version }}-macos-aarch64.zip
librav1e ${{ steps.tagName.outputs.version }} (linux-generic)/librav1e-${{ steps.tagName.outputs.version }}-linux-generic.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (linux-i686)/librav1e-${{ steps.tagName.outputs.version }}-linux-i686.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (linux-sse4)/librav1e-${{ steps.tagName.outputs.version }}-linux-sse4.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (linux-avx2)/librav1e-${{ steps.tagName.outputs.version }}-linux-avx2.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (linux-aarch64)/librav1e-${{ steps.tagName.outputs.version }}-linux-aarch64.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (macos)/librav1e-${{ steps.tagName.outputs.version }}-macos.tar.gz
librav1e ${{ steps.tagName.outputs.version }} (macos-aarch64)/librav1e-${{ steps.tagName.outputs.version }}-macos-aarch64.tar.gz
rav1e ${{ steps.tagName.outputs.version }} (Windows-msvc-generic)/rav1e-${{ steps.tagName.outputs.version }}-windows-msvc-generic.zip
rav1e ${{ steps.tagName.outputs.version }} (Windows-msvc-sse4)/rav1e-${{ steps.tagName.outputs.version }}-windows-msvc-sse4.zip
rav1e ${{ steps.tagName.outputs.version }} (Windows-msvc-avx2)/rav1e-${{ steps.tagName.outputs.version }}-windows-msvc-avx2.zip
rav1e ${{ steps.tagName.outputs.version }} (Windows-gnu-generic)/rav1e-${{ steps.tagName.outputs.version }}-windows-gnu-generic.zip
rav1e ${{ steps.tagName.outputs.version }} (Windows-gnu-sse4)/rav1e-${{ steps.tagName.outputs.version }}-windows-gnu-sse4.zip
rav1e ${{ steps.tagName.outputs.version }} (Windows-gnu-avx2)/rav1e-${{ steps.tagName.outputs.version }}-windows-gnu-avx2.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}