Skip to content

bump to 0.4.2

bump to 0.4.2 #3

Workflow file for this run

name: Build release
on:
push:
tags:
- v*
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Create release
uses: ncipollo/release-action@v1
with:
name: nif ${{ github.ref_name }}
artifacts: 'target\release\*.exe'
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
generateReleaseNotes: true