Skip to content

0.1.3

0.1.3 #7

Workflow file for this run

name: Rust Release
on:
release:
types: [created]
jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [ {name: x86_64-pc-windows-gnu} ]
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
TOOLCHAIN_VERSION: nightly
RUSTTARGET: ${{ matrix.target.name }}
STATIC_LINKING: true
EXTRA_FILES: "README.md LICENSE config.toml"