chore: sync release #8
Workflow file for this run
This file contains hidden or 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: Rust Release | |
| env: | |
| CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }} | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| rust_publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| - name: Dry Run Publish package rust | |
| working-directory: ./bintensors | |
| run: cargo publish --dry-run | |
| - name: Publish package rust | |
| if: ${{ !contains(github.ref, 'rc') }} | |
| working-directory: ./bintensors | |
| run: cargo publish --token ${CRATES_TOKEN} |