From 5d23bb6e8cca756f1173d3f4030c3f365afef56a Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Tue, 10 Feb 2026 21:00:18 -0300 Subject: [PATCH] bugfix: taggeo todos los commits localmente, incluso en ci --- bitbucket-pipelines.yml | 2 -- src/git_flow/command/tag.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 5d48553..f88d4bd 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -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 diff --git a/src/git_flow/command/tag.py b/src/git_flow/command/tag.py index 2fcb475..f629df0 100644 --- a/src/git_flow/command/tag.py +++ b/src/git_flow/command/tag.py @@ -50,8 +50,8 @@ 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") + + Git("tag", next_tag, tag_commit).exec(print="Creando tag localmente") def get_token_and_ci(self, args: Namespace): try: