Skip to content

Releasing v0.10.0

Releasing v0.10.0 #13

Workflow file for this run

name: CI
on:
push:
tags:
- '*.*.*'
env:
HFS: ""
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- run: cargo check
publish:
name: publish
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CRATES_TOKEN }}