chore(deps): update rust crate thiserror to 1.0.68 (#125) #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release and Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4 | |
id: release | |
publish: | |
runs-on: ubuntu-latest | |
needs: release | |
if: ${{ needs.release.outputs.release_created }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rustup version | |
run: rustup --version | |
- name: Cargo version | |
run: cargo --version | |
- name: Publish | |
run: cargo publish | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |