Files
renovate-configs/.gitea/workflows/cd.yaml
Renovate Bot e79dc9325d
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
CI / Test (common.json) (pull_request) Successful in 15s
CI / Test (k8s.json) (pull_request) Successful in 13s
CI / Test (docker-compose.json) (pull_request) Successful in 37s
CI / Test (action.json) (pull_request) Successful in 48s
CI / Test (helm.json) (pull_request) Successful in 47s
chore(deps): pin actions/checkout action to 08c6903
2025-11-04 07:23:37 +00:00

24 lines
545 B
YAML

name: CD
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
fetch-depth: 0
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1
with:
token: ${{ secrets.GITEA_TOKEN }}
- uses: ./.gitea/actions/release-git-tag
with:
tag: ${{ steps.tag.outputs.new-tag }}