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':
- step:
name: "Tag dev"
caches:
- pip
script:
- cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install .
- ./src/git_flow/main.py tag $BEARER
- git-flow tag $BEARER
'main':
- step:
name: "Tag main"
caches:
- pip
script:
- cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install .
- ./src/git_flow/main.py tag $BEARER
- git-flow tag $BEARER
+2 -2
View File
@@ -1,6 +1,6 @@
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "git-flow"