We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7150c32 commit e00982fCopy full SHA for e00982f
.github/workflows/cross-platform.yml
@@ -55,8 +55,26 @@ jobs:
55
working-directory: .
56
continue-on-error: true
57
58
- - name: Rust Release binary
59
- if: runner.os == 'linux'
+ release:
+ name: release ${{ matrix.target }}
60
+ runs-on: ubuntu-latest
61
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ include:
65
+ - target: x86_64-pc-windows-gnu
66
+ archive: zip
67
+ - target: x86_64-unknown-linux-musl
68
+ archive: tar.gz tar.xz tar.zst
69
+ - target: x86_64-apple-darwin
70
71
+ steps:
72
+ - uses: actions/checkout@master
73
+ - name: Compile and release
74
uses: rust-build/[email protected]
75
+ env:
76
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77
with:
- RUSTTARGET: "osvm"
78
+ RUSTTARGET: ${{ matrix.target }}
79
+ ARCHIVE_TYPES: ${{ matrix.archive }}
80
+
0 commit comments