forked from kemitix/git-next
32 lines
684 B
YAML
32 lines
684 B
YAML
name: Release Please
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
release-plz:
|
|
name: Release-plz
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
- name: Run release-plz
|
|
uses: https://git.kemitix.net/kemitix/release-plz-action@dev
|
|
with:
|
|
backend: gitea
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|