2 Commits

Author SHA1 Message Date
t.behrendt 23c1b967d5 fix(build-container): remove dependency to test workflow (#3)
Reviewed-on: #3
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-05-26 20:12:41 +02:00
t.behrendt afaaf59b13 ci: add release workflow (#2)
Reviewed-on: #2
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-05-26 20:11:13 +02:00
3 changed files with 31 additions and 2 deletions
-2
View File
@@ -47,8 +47,6 @@ jobs:
matrix: matrix:
# Prepared for future multi-arch support in the future, as soon as ACT has support for dynamic matrixes. # Prepared for future multi-arch support in the future, as soon as ACT has support for dynamic matrixes.
arch: [amd64] arch: [amd64]
needs:
- test
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
- linux_${{ matrix.arch }} - linux_${{ matrix.arch }}
+27
View File
@@ -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 }}
+4
View File
@@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>t.behrendt/renovate-configs:action"]
}