Skip to content

Add latency slider to watch demo (#728) #527

Add latency slider to watch demo (#728)

Add latency slider to watch demo (#728) #527

Workflow file for this run

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 }}