Files
k_deploy_workflows/.gitea/workflows/release.yaml
T
2026-07-18 07:37:39 +02:00

29 lines
808 B
YAML

name: Release
on:
push:
branches:
- main
paths:
- ".gitea/workflows/deploy.yaml"
- ".gitea/workflows/validate.yaml"
workflow_dispatch:
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@39e952658b0543b68395c7566038444c4057cd6a # 0.1.40
with:
token: ${{ secrets.GITEA_TOKEN }}
- name: Push tag
uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@5ad25d97af3bcb89090663e71ca1b259fc0c64e0 # 0.2.9
with:
tag: ${{ steps.tag.outputs.new-tag }}