Skip to content

rust release action #11

rust release action

rust release action #11

Workflow file for this run

on:
release:
types: [created]
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-gnu
archive: zip
static: true
- target: x86_64-unknown-linux-musl
archive: tar.gz tar.xz tar.zst
static: false
- target: x86_64-apple-darwin
archive: tar.gz
static: false
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/rust-build.action@v1.4.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
SRC_DIR: dashtool
STATIC_LINKING: ${{ matrix.static }}