ci: split workflows - add tag.yaml for version tagging
PR Checks / lint (pull_request) Failing after 3s
PR Checks / build (pull_request) Successful in 53s
PR Checks / test (pull_request) Has been skipped

This commit is contained in:
2026-06-12 17:04:59 -04:00
parent 92bd4ac4f9
commit 2a241b25bc
+23
View File
@@ -0,0 +1,23 @@
name: Tag Release
on:
push:
branches: [master]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
fetch-depth: 0
- name: Bump version and push tag
uses: anothrNick/github-tag-action@4ed44965e0dbd8ab2b466a16da04aec3cc312fd8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
RELEASE_BRANCHES: master
WITH_V: true
GIT_API_TAGGING: false