From b07fab42790acf22322fe871a2f746c8cd4ba7f8 Mon Sep 17 00:00:00 2001 From: Kaloyan Tanev Date: Fri, 12 Dec 2025 17:46:23 -0300 Subject: [PATCH 1/2] Remove annotation from tagging in pipelines --- .github/workflows/tag-minor-full-release.yml | 2 +- .github/workflows/tag-minor-release-candidate.yml | 2 +- .github/workflows/tag-patch-full-release.yml | 2 +- .github/workflows/tag-patch-release-candidate.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tag-minor-full-release.yml b/.github/workflows/tag-minor-full-release.yml index 1b4da57a6..64d3b7019 100644 --- a/.github/workflows/tag-minor-full-release.yml +++ b/.github/workflows/tag-minor-full-release.yml @@ -131,7 +131,7 @@ jobs: RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" # Create annotated tag - git tag -a "${TAG_VERSION}" -m "Release ${TAG_VERSION}" + git tag "${TAG_VERSION}" -m "Release ${TAG_VERSION}" # Push tag to remote git push origin "${TAG_VERSION}" diff --git a/.github/workflows/tag-minor-release-candidate.yml b/.github/workflows/tag-minor-release-candidate.yml index 29b919830..e5477e398 100644 --- a/.github/workflows/tag-minor-release-candidate.yml +++ b/.github/workflows/tag-minor-release-candidate.yml @@ -109,7 +109,7 @@ jobs: NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" # Create annotated tag - git tag -a "$NEW_TAG" -m "Release candidate $NEW_TAG" + git tag "$NEW_TAG" -m "Release candidate $NEW_TAG" # Push tag git push origin "$NEW_TAG" diff --git a/.github/workflows/tag-patch-full-release.yml b/.github/workflows/tag-patch-full-release.yml index 0161f8599..4929fd13c 100644 --- a/.github/workflows/tag-patch-full-release.yml +++ b/.github/workflows/tag-patch-full-release.yml @@ -163,7 +163,7 @@ jobs: RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" # Create annotated tag - git tag -a "${TAG_VERSION}" -m "Release ${TAG_VERSION}" + git tag "${TAG_VERSION}" -m "Release ${TAG_VERSION}" # Push tag to remote git push origin "${TAG_VERSION}" diff --git a/.github/workflows/tag-patch-release-candidate.yml b/.github/workflows/tag-patch-release-candidate.yml index bc16ab303..870a2a464 100644 --- a/.github/workflows/tag-patch-release-candidate.yml +++ b/.github/workflows/tag-patch-release-candidate.yml @@ -142,7 +142,7 @@ jobs: NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" # Create annotated tag - git tag -a "$NEW_TAG" -m "Release candidate $NEW_TAG" + git tag "$NEW_TAG" -m "Release candidate $NEW_TAG" # Push tag git push origin "$NEW_TAG" From f818cd0ad707fe5589212d8fc1e2ffc0988d2251 Mon Sep 17 00:00:00 2001 From: Kaloyan Tanev Date: Fri, 12 Dec 2025 18:57:28 -0300 Subject: [PATCH 2/2] Fix comment --- .github/workflows/tag-minor-full-release.yml | 2 +- .github/workflows/tag-minor-release-candidate.yml | 2 +- .github/workflows/tag-patch-full-release.yml | 2 +- .github/workflows/tag-patch-release-candidate.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tag-minor-full-release.yml b/.github/workflows/tag-minor-full-release.yml index 64d3b7019..9147e684c 100644 --- a/.github/workflows/tag-minor-full-release.yml +++ b/.github/workflows/tag-minor-full-release.yml @@ -130,7 +130,7 @@ jobs: TAG_VERSION="${{ steps.version.outputs.TAG_VERSION }}" RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" - # Create annotated tag + # Create tag git tag "${TAG_VERSION}" -m "Release ${TAG_VERSION}" # Push tag to remote diff --git a/.github/workflows/tag-minor-release-candidate.yml b/.github/workflows/tag-minor-release-candidate.yml index e5477e398..64bed6fab 100644 --- a/.github/workflows/tag-minor-release-candidate.yml +++ b/.github/workflows/tag-minor-release-candidate.yml @@ -108,7 +108,7 @@ jobs: run: | NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" - # Create annotated tag + # Create tag git tag "$NEW_TAG" -m "Release candidate $NEW_TAG" # Push tag diff --git a/.github/workflows/tag-patch-full-release.yml b/.github/workflows/tag-patch-full-release.yml index 4929fd13c..f79c188b6 100644 --- a/.github/workflows/tag-patch-full-release.yml +++ b/.github/workflows/tag-patch-full-release.yml @@ -162,7 +162,7 @@ jobs: TAG_VERSION="${{ steps.find_patch.outputs.TAG_VERSION }}" RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" - # Create annotated tag + # Create tag git tag "${TAG_VERSION}" -m "Release ${TAG_VERSION}" # Push tag to remote diff --git a/.github/workflows/tag-patch-release-candidate.yml b/.github/workflows/tag-patch-release-candidate.yml index 870a2a464..e0683f37c 100644 --- a/.github/workflows/tag-patch-release-candidate.yml +++ b/.github/workflows/tag-patch-release-candidate.yml @@ -141,7 +141,7 @@ jobs: run: | NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" - # Create annotated tag + # Create tag git tag "$NEW_TAG" -m "Release candidate $NEW_TAG" # Push tag