refactor: bump hashbrown
to v0.15.0, use HashTable
api (#6)
#8
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 | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.GH_DEPLOY_TOKEN }} | |
release-type: rust | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
- uses: dtolnay/rust-toolchain@stable | |
if: ${{ steps.release.outputs.release_created }} | |
- run: cargo login ${{ secrets.CARGO_PUBLISH_TOKEN }} | |
if: ${{ steps.release.outputs.release_created }} | |
- run: cargo publish | |
if: ${{ steps.release.outputs.release_created }} |