Skip to content

version up to v0.0.95 #82

version up to v0.0.95

version up to v0.0.95 #82

Workflow file for this run

name: release
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
env:
CARGO_TERM_COLOR: always
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
persist-credentials: false
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: release the crate
run: |
cargo publish --token ${{ secrets.CARGO_TOKEN }}