fix/release-workflow-issues #19

Merged
david merged 4 commits from fix/release-workflow-issues into main 2026-04-01 06:31:23 +00:00
Showing only changes of commit 89d0d08162 - Show all commits
+6
View File
@@ -91,8 +91,14 @@ jobs:
run: |
TAG_NAME="v${{ steps.version.outputs.new_version }}"
echo "Creating tag $TAG_NAME"
# Check if tag already exists
if git rev-parse "$TAG_NAME" >/dev/null 2>&1; then
echo "Tag $TAG_NAME already exists, skipping tag creation"
else
git tag -a "$TAG_NAME" -m "Release $TAG_NAME"
git push origin "$TAG_NAME"
fi
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3