Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

v0.1.6

v0.1.6 #9

Workflow file for this run

name: Publish
on:
release:
types:
- published
permissions:
contents: read
jobs:
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
- name: Publish to crates.io
run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{secrets.CRATES_IO_PUBLISH}}