inc ver #3
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: publish | |
| on: | |
| push: | |
| tags: | |
| - v[0-9]+.* | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install cargo components | |
| run: rustup component add clippy | |
| - name: run tests | |
| run: .github/scripts/test.sh | |
| - name: login to crates.io | |
| run: cargo login ${{ secrets.CRATESIO }} | |
| - name: publish bevy_quadtree | |
| run: .github/scripts/publish.sh bevy_quadtree |