Frank Villaro-Dixon
861ab964b1
Some checks failed
publish crate / publish (push) Failing after 1m27s
Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
19 lines
No EOL
417 B
YAML
19 lines
No EOL
417 B
YAML
name: publish crate
|
|
on:
|
|
push:
|
|
branches:
|
|
- cicd
|
|
tags:
|
|
- 'v*'
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
- uses: https://github.com/katyo/publish-crates@v2
|
|
with:
|
|
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |