Release 0.1.11 #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release binary | |
on: | |
release: | |
types: [created] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
release: | |
name: release ${{ matrix.target }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-pc-windows-gnu | |
archive: zip | |
- target: x86_64-unknown-linux-musl | |
archive: tar.gz | |
# | |
# Currently the build for macOS doesn't work. I shall fix it some day. | |
# | |
# - target: x86_64-apple-darwin | |
# archive: zip | |
steps: | |
- uses: actions/checkout@master | |
- name: Compile and release | |
uses: rust-build/rust-build.action@v1.3.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
RUSTTARGET: ${{ matrix.target }} | |
ARCHIVE_TYPES: ${{ matrix.archive }} | |
PRE_BUILD: .github/install-bdeps.sh | |
TOOLCHAIN_VERSION: stable | |
# wait for two minutes for upload before claiming the workflow | |
# finished. | |
- run: sleep 120 |