Skip to content

chore: Bump to 0.8 (#1428) #1

chore: Bump to 0.8 (#1428)

chore: Bump to 0.8 (#1428) #1

Workflow file for this run

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