remove unecessary 'static trait bound #17
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: publish | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install protobuf tooling | |
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
- name: Publish | |
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }} |