Add latency slider to watch demo (#728) #527
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 | |
| # Only one release job can run at a time. | |
| concurrency: | |
| group: release | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| release: | |
| name: Plz | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Generating a GitHub token, so that PRs and tags created by | |
| # the release-plz-action can trigger actions workflows. | |
| - name: Generate GitHub token | |
| uses: actions/create-github-app-token@v2 | |
| id: generate-token | |
| with: | |
| # GitHub App ID secret name | |
| app-id: ${{ secrets.APP_ID }} | |
| # GitHub App private key secret name | |
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
| # Checkout the repository | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ steps.generate-token.outputs.token }} | |
| # Instal Rust | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| # Run release-plz to create PRs and releases | |
| - name: Release-plz | |
| uses: MarcoIeni/[email protected] | |
| with: | |
| manifest_path: ./rs/Cargo.toml | |
| config: ./rs/.release-plz.toml | |
| env: | |
| GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |