Merge pull request 'fix(ci): add workflow_dispatch and concurrency guard to auto-tag' (#10) from fix/auto-tag-dispatch into master

Reviewed-on: #10
This commit is contained in:
sarman 2026-04-05 17:06:09 +00:00
commit d676372487

View File

@ -2,11 +2,17 @@ name: Auto Tag
# Runs on every merge to master — reads the latest semver tag, increments # Runs on every merge to master — reads the latest semver tag, increments
# the patch version, pushes a new tag, then runs release builds in this workflow. # the patch version, pushes a new tag, then runs release builds in this workflow.
# workflow_dispatch allows manual triggering when Gitea drops a push event.
on: on:
push: push:
branches: branches:
- master - master
workflow_dispatch:
concurrency:
group: auto-tag-master
cancel-in-progress: false
jobs: jobs:
autotag: autotag: