mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-13 19:16:47 +01:00
29 lines
745 B
YAML
29 lines
745 B
YAML
|
---
|
||
|
on:
|
||
|
push:
|
||
|
workflow_run:
|
||
|
branches: [master]
|
||
|
|
||
|
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
|
||
|
|