Skip to content

1.1.0 Release

1.1.0 Release #6

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Auto build on release
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
release:
types: [created]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
- target: x86_64-unknown-linux-musl
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}