update python version install of setup python #50
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@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache Cargo Registry | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/registry | |
| key: ubuntu-latest-cargo-registry-${{ hashFiles('**/Cargo.toml') }} | |
| - name: Publish package rust | |
| working-directory: ./tokenizers | |
| if: ${{ !contains(github.ref, 'rc') }} | |
| run: cargo publish --token ${CRATES_TOKEN} | |