Skip to content

fix(blend): allow release token to trigger dist #4

fix(blend): allow release token to trigger dist

fix(blend): allow release token to trigger dist #4

Workflow file for this run

name: Release-plz
on:
push:
branches: [master]
paths:
- "blend/**"
- "Cargo.toml"
- "Cargo.lock"
- "release-plz.toml"
- ".github/workflows/release-plz.yml"
workflow_dispatch:
jobs:
release-plz-release:
name: Release-plz release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1.92.0
- name: Run release-plz
uses: release-plz/action@v0.5
with:
command: release
manifest_path: Cargo.toml
config: release-plz.toml
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN || secrets.GITHUB_TOKEN }}
release-plz-pr:
name: Release-plz PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
concurrency:
group: release-plz/${{ github.ref }}
cancel-in-progress: false
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@1.92.0
- name: Run release-plz
uses: release-plz/action@v0.5
with:
command: release-pr
manifest_path: Cargo.toml
config: release-plz.toml
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN || secrets.GITHUB_TOKEN }}