Skip to content

gci: Fix up the crates.io publishing job #13

gci: Fix up the crates.io publishing job

gci: Fix up the crates.io publishing job #13

Workflow file for this run

---
on:
push:
workflow_run:
branches: [master]
jobs:
publish:
name: Publish to crates.io

Check failure on line 9 in .github/workflows/crate-io.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/crate-io.yml

Invalid workflow file

The workflow is not valid. .github/workflows/crate-io.yml (Line: 9, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v2
with:
path: './cln-rpc'
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true
- uses: katyo/publish-crates@v2
with:
path: './plugins'
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true
- uses: katyo/publish-crates@v2
with:
path: './cln-grpc'
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
ignore-unpublished-changes: true