2023-12-03 16:06:02 +03:00
|
|
|
name: Publish to crates.io
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
plan:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
PLAN: ${{ inputs.plan }}
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
steps:
|
2024-06-23 15:59:44 +03:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2023-12-03 16:06:02 +03:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
- run: cargo publish
|