bugfix: cambio script de build para ejecutar git-flow tag

This commit is contained in:
jt
2025-11-04 20:59:44 -03:00
parent 61d9d3774d
commit 34b07ab8dc
2 changed files with 10 additions and 4 deletions
+8 -2
View File
@@ -5,14 +5,20 @@ pipelines:
'dev': 'dev':
- step: - step:
name: "Tag dev" name: "Tag dev"
caches:
- pip
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install . - pip install .
- ./src/git_flow/main.py tag $BEARER - git-flow tag $BEARER
'main': 'main':
- step: - step:
name: "Tag main" name: "Tag main"
caches:
- pip
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install . - pip install .
- ./src/git_flow/main.py tag $BEARER - git-flow tag $BEARER
+2 -2
View File
@@ -1,6 +1,6 @@
[build-system] [build-system]
requires = ["hatchling >= 1.26"] requires = ["setuptools >= 61.0"]
build-backend = "hatchling.build" build-backend = "setuptools.build_meta"
[project] [project]
name = "git-flow" name = "git-flow"