Skip to content

feat: videoeditor-genai — typed image-gen clients (grok + imagen) and… #7

feat: videoeditor-genai — typed image-gen clients (grok + imagen) and…

feat: videoeditor-genai — typed image-gen clients (grok + imagen) and… #7

Workflow file for this run

name: Release-plz
permissions:
pull-requests: write
contents: write
on:
push:
branches: [main]
jobs:
# Opens/updates the release PR (version bumps + changelog)
release-plz-pr:
name: Release-plz release PR
runs-on: ubuntu-latest
concurrency:
group: release-plz-${{ github.ref }}
cancel-in-progress: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_PLZ_TOKEN }}
- uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
uses: release-plz/action@v0.5
with:
command: release-pr
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
# Publishes to crates.io + tags when the release PR merges
release-plz-release:
name: Release-plz release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_PLZ_TOKEN }}
- uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
uses: release-plz/action@v0.5
with:
command: release
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}