Skip to content

Commit

Permalink
Revert "Add force flag to git tag and push command"
Browse files Browse the repository at this point in the history
This reverts commit 833e0a0.
  • Loading branch information
savitaashture committed Sep 11, 2024
1 parent 833e0a0 commit 9d12f07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ release: $(CATALOGCD) prepare-release
# tags the repository with the RELEASE_VERSION and pushes to "origin"
git-tag-release-version:
if ! git rev-list "${RELEASE_VERSION}".. >/dev/null; then \
git tag -f "$(RELEASE_VERSION)" && \
git push origin --tags -f; \
git tag "$(RELEASE_VERSION)" && \
git push origin --tags; \
fi

# rolls out the current Chart version as the repository release version, uploads the release
Expand Down

0 comments on commit 9d12f07

Please sign in to comment.