trello-to-deck/.forgejo/workflows/push-main.yml
Renovate Bot 243d2c23f9
Some checks failed
Test / build (map[name:nightly]) (pull_request) Failing after 1m38s
Test / build (map[name:stable]) (pull_request) Failing after 1m53s
chore(deps): update git.kemitix.net/kemitix/rust docker tag to v4
2025-01-14 18:24:34 +00:00

38 lines
835 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
container:
image:
git.kemitix.net/kemitix/rust:v4.0.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run release-plz release-pr
run: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Run release-plz release
run: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}