We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f64d58 commit c5c8d3eCopy full SHA for c5c8d3e
.github/workflows/release.yml
@@ -1,3 +1,5 @@
1
+name: Release
2
+
3
on:
4
release:
5
types: [created]
@@ -9,21 +11,12 @@ jobs:
9
11
strategy:
10
12
fail-fast: false
13
matrix:
- include:
- - target: x86_64-pc-windows-gnu
14
- archive: zip
15
- - target: x86_64-unknown-linux-musl
16
- archive: tar.gz
17
- - target: x86_64-apple-darwin
18
19
- - target: wasm32-wasi
20
- archive: zip tar.gz
+ target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu, x86_64-apple-darwin]
21
steps:
22
- uses: actions/checkout@master
23
- name: Compile and release
24
- uses: rust-build/rust-build.action@master
+ uses: rust-build/rust-build.action@latest
25
env:
26
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
RUSTTARGET: ${{ matrix.target }}
28
- ARCHIVE_TYPES: ${{ matrix.archive }}
29
- EXTRA_FILES: "README.md"
+ EXTRA_FILES: "README.md LICENCE"
0 commit comments