refactor: migrate CI from single docker-build.yaml to split workflows #7

Merged
jcabillot merged 5 commits from fix/refactor-ci-pipelines into master 2026-06-12 20:18:46 -04:00
Showing only changes of commit fcad3d72fc - Show all commits
+19
View File
@@ -0,0 +1,19 @@
name: Tag Release
on:
push:
branches: [master]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- name: Bump version and push tag
uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
RELEASE_BRANCHES: master
WITH_V: true
GIT_API_TAGGING: false