ci: support semantic versioning, conventional commits #15

Merged
mvhutz merged 6 commits from ci/semantics-n-conventions into main 2026-04-03 13:46:06 +00:00
Showing only changes of commit 3bb663dc8b - Show all commits

View File

@@ -0,0 +1,22 @@
name: Release
on:
push:
tags: ["v*"]
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v6
with:
args: release --clean
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}