Skip to content

Publish a new version to crates.io #3

Publish a new version to crates.io

Publish a new version to crates.io #3

Workflow file for this run

name: Publish a new version to crates.io
on:
workflow_dispatch:
inputs:
dryrun:
description: 'Run in dry-run mode'
required: false
default: false
type: boolean
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
dry-run: ${{ inputs.dryrun }}