Files
actions/.gitea/workflows/cd.yaml
Renovate Bot 1b9f3af412
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
chore(deps): update actions/checkout digest to 93cb6ef
2025-11-17 18:00:47 +00:00

25 lines
553 B
YAML

name: CD
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # 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.2
with:
token: ${{ secrets.GITEA_TOKEN }}
- name: Push tag
uses: ./release-git-tag
with:
tag: ${{ steps.tag.outputs.new-tag }}