Skip to content

ci: added checklist validator #19

ci: added checklist validator

ci: added checklist validator #19

Workflow file for this run

name: Publishing
on:
push:
branches:
- main
jobs:
test:
uses: ./.github/workflows/test.yml
publish:
name: Publish the client to the public registry
needs: test
runs-on: ubuntu-latest
env:
CRATES_IO: ${{ secrets.CRATES_IO }}
steps:
- uses: actions/checkout@v4
- run: |
echo "Publishing to crates.io"
cargo login $CRATES_IO
cargo build -r
cargo package
cargo publish