From 7514d4c273ee8bfd1cc2e254f4f5cac9ce54d5b3 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Tue, 26 May 2026 20:09:37 +0200 Subject: [PATCH] ci: add release workflow --- .gitea/workflows/release.yaml | 27 +++++++++++++++++++++++++++ renovate.json | 4 ++++ 2 files changed, 31 insertions(+) create mode 100644 .gitea/workflows/release.yaml create mode 100644 renovate.json diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..36ecd29 --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,27 @@ +name: Release + +on: + push: + branches: + - main + paths: + - ".gitea/workflows/" + workflow_dispatch: + +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + fetch-depth: 0 + - name: Increment tag + id: tag + uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@ef0c23189db33220a73022d8c29a27709d0df440 # 0.1.32 + with: + token: ${{ secrets.GITEA_TOKEN }} + - name: Push tag + uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@38c1bbd8bad3e7965744d03de85faa4a5b808d1b # 0.2.4 + with: + tag: ${{ steps.tag.outputs.new-tag }} diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..f275018 --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["local>t.behrendt/renovate-configs:action"] +} -- 2.52.0