Skip to content

Update cargo

Update cargo #3

Workflow file for this run

name: Publish Crate
on:
workflow_dispatch:
push:
# Pattern matched against refs/tags
tags:
- "*"
jobs:
call-workflow-audit:
uses: ./.github/workflows/audit.yml
call-workflow-build:
uses: ./.github/workflows/build.yml
call-workflow-build-docs:
uses: ./.github/workflows/build_docs.yml

Check failure on line 16 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

error parsing called workflow ".github/workflows/publish.yml" -> "./.github/workflows/build_docs.yml" (source tag with sha:6eecfd7fb080c9d99a16b396346bf04f96cf4eb2) : workflow is not reusable as it is missing a `on.workflow_call` trigger
call-workflow-lint-and-test:
uses: ./.github/workflows/lint_and_test.yml
publish:
name: Publish Crate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true