chore(central) : aligne la doc prod et l auto-tag
Some checks failed
Auto Tag Develop / tag (push) Failing after 4s

This commit is contained in:
2026-04-03 11:41:46 +02:00
parent 30038255da
commit 9529f4cf63
2 changed files with 6 additions and 5 deletions

View File

@@ -21,6 +21,7 @@ jobs:
run: |
set -euo pipefail
# Skip if current commit already has a vX.Y.Z tag
if git tag --points-at HEAD | grep -qE '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
echo "Tag already exists on this commit. Skipping."
exit 0
@@ -51,7 +52,7 @@ jobs:
version="${major}.${minor}.$((patch + 1))"
fi
printf "parameters:\n app.version: '%s'\n" "$version" > config/version.yaml
printf "parameters:\\n app.version: '%s'\\n" "$version" > config/version.yaml
git config user.name "gitea-actions"
git config user.email "gitea-actions@local"
git add config/version.yaml