release 0.7.0 (#34) #16
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
| # generated by nickel/release.ncl; do not manually edit | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUSTDOCFLAGS: --deny warnings | |
| RUSTFLAGS: --deny warnings | |
| jobs: | |
| release: | |
| name: release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: install rust toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - name: install bevy dependencies | |
| run: sudo apt-get update && sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev | |
| shell: bash | |
| - env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| name: run release-plz | |
| uses: MarcoIeni/release-plz-action@v0.5 | |
| with: | |
| command: release | |
| name: release | |
| on: | |
| push: | |
| branches: | |
| - '[0-9]+.[0-9]+' | |
| permissions: | |
| contents: write |