Merged in bugfix/tag-all-commits-locally (pull request #61)

bugfix: taggeo todos los commits localmente, incluso en ci

Approved-by: Jonathan Teran
This commit is contained in:
JonathanGitFlow
2026-02-11 00:01:47 +00:00
committed by jt
2 changed files with 2 additions and 4 deletions
-2
View File
@@ -10,7 +10,5 @@ pipelines:
script:
- pip install uv
- uv run git-flow tag --token=$BEARER
- git status
- git log --oneline -5
- uv build
- uv publish --token=$PYPI_TOKEN
+1 -1
View File
@@ -50,7 +50,7 @@ class TagCommand(Command):
if ci:
Git("push").exec(print="Subiendo commit al remoto para taggearlo")
self.success(self.get_remote_api(token).create_tag(next_tag, tag_commit))
else:
Git("tag", next_tag, tag_commit).exec(print="Creando tag localmente")
def get_token_and_ci(self, args: Namespace):