We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bc21ef commit 91449feCopy full SHA for 91449fe
.github/workflows/release.yml
@@ -0,0 +1,30 @@
1
+on:
2
+ release:
3
+ types: [created]
4
+
5
+permissions:
6
+ contents: write
7
8
+jobs:
9
10
+ name: release ${{ matrix.target }}
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ include:
16
+ # - target: x86_64-pc-windows-gnu
17
+ # archive: zip
18
+ - target: x86_64-unknown-linux-musl
19
+ archive: tar.gz tar.xz tar.zst
20
+ # - target: x86_64-apple-darwin
21
22
+ steps:
23
+ - uses: actions/checkout@master
24
+ - name: Compile and release
25
+ uses: rust-build/rust-build.action@v1.4.5
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
+ with:
29
+ RUSTTARGET: ${{ matrix.target }}
30
+ ARCHIVE_TYPES: ${{ matrix.archive }}
0 commit comments