Skip to content

Release 0.1.10

Release 0.1.10 #17

Workflow file for this run

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