Skip to content

Cargo: bump version to 0.11.11 #24

Cargo: bump version to 0.11.11

Cargo: bump version to 0.11.11 #24

Workflow file for this run

name: Publish to crates.io
on:
push:
tags: [ 'v*' ]
jobs:
publish:
runs-on: ubuntu-latest
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 -p darkbio-crypto-cbor-derive
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
- run: sleep 30 # Wait for crates.io to index the derive crate
- run: cargo publish
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}