diff --git a/.github/workflows/tag-minor-full-release.yml b/.github/workflows/tag-minor-full-release.yml index 1b4da57a6..9147e684c 100644 --- a/.github/workflows/tag-minor-full-release.yml +++ b/.github/workflows/tag-minor-full-release.yml @@ -130,8 +130,8 @@ jobs: TAG_VERSION="${{ steps.version.outputs.TAG_VERSION }}" RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" - # Create annotated tag - git tag -a "${TAG_VERSION}" -m "Release ${TAG_VERSION}" + # Create tag + 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..64bed6fab 100644 --- a/.github/workflows/tag-minor-release-candidate.yml +++ b/.github/workflows/tag-minor-release-candidate.yml @@ -108,8 +108,8 @@ jobs: run: | NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" - # Create annotated tag - git tag -a "$NEW_TAG" -m "Release candidate $NEW_TAG" + # Create 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..f79c188b6 100644 --- a/.github/workflows/tag-patch-full-release.yml +++ b/.github/workflows/tag-patch-full-release.yml @@ -162,8 +162,8 @@ jobs: TAG_VERSION="${{ steps.find_patch.outputs.TAG_VERSION }}" RELEASE_BRANCH="${{ steps.find_branch.outputs.RELEASE_BRANCH }}" - # Create annotated tag - git tag -a "${TAG_VERSION}" -m "Release ${TAG_VERSION}" + # Create tag + 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..e0683f37c 100644 --- a/.github/workflows/tag-patch-release-candidate.yml +++ b/.github/workflows/tag-patch-release-candidate.yml @@ -141,8 +141,8 @@ jobs: run: | NEW_TAG="${{ steps.latest_rc.outputs.NEW_TAG }}" - # Create annotated tag - git tag -a "$NEW_TAG" -m "Release candidate $NEW_TAG" + # Create tag + git tag "$NEW_TAG" -m "Release candidate $NEW_TAG" # Push tag git push origin "$NEW_TAG"