[ci] Create the crates publish action
This commit is contained in:
parent
486cbcd80f
commit
85d94fe9ab
1 changed files with 18 additions and 0 deletions
18
.github/workflows/crates-releae.yml
vendored
Normal file
18
.github/workflows/crates-releae.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
name: Publish to crates.io
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [ created, published ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish-crates:
|
||||||
|
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 }}
|
Loading…
Reference in a new issue