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

Publish

Publish #1

Workflow file for this run

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