Skip to content

chore: Prepare for 0.3.2 release (#143) #1

chore: Prepare for 0.3.2 release (#143)

chore: Prepare for 0.3.2 release (#143) #1

Workflow file for this run

name: Publish to crates.io
on:
push:
# Triggers when pushing tags starting with 'v'
tags: ["v*"]
jobs:
publish:
runs-on: ubuntu-latest
environment: rust-release
permissions:
id-token: write # Required for OIDC token exchange
steps:
- uses: actions/checkout@v5
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}