release #89
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: release | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| pages: write | |
| id-token: write | |
| on: | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: 1 | |
| CARGO_INCREMENTAL: 0 | |
| jobs: | |
| release-rust-crates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| # Needed to clone all the git history, which is necessary to determine | |
| # the next version and build the changelog. | |
| fetch-depth: 0 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| # This is configured with trusted publishing from Github to crates.io | |
| - uses: MarcoIeni/release-plz-action@v0.5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| deploy-website: | |
| needs: release-rust-crates | |
| uses: ./.github/workflows/deploy-website.yml |