Skip to content

Update to the latest dependencies. #13

Update to the latest dependencies.

Update to the latest dependencies. #13

Workflow file for this run

name: Publish To Crates.io
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run : |
VERSION="${GITHUB_REF#refs/*/}" make publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}