bugfix: arreglo ejecucion de tag mediante pipeline

This commit is contained in:
jt
2025-11-03 21:54:03 -03:00
parent 9e1c710373
commit 96c787b38c
2 changed files with 7 additions and 4 deletions
+4 -4
View File
@@ -7,12 +7,12 @@ pipelines:
name: "Tag dev"
script:
- cd $BITBUCKET_CLONE_DIR
- pip install -r requirements.txt
- ./git-flow tag $BEARER
- pip install .
- ./src/git_flow/main.py tag $BEARER
'main':
- step:
name: "Tag main"
script:
- cd $BITBUCKET_CLONE_DIR
- pip install -r requirements.txt
- ./git-flow tag $BEARER
- pip install .
- ./src/git_flow/main.py tag $BEARER
+3
View File
@@ -661,3 +661,6 @@ def get_api_endpoint(service: str, repository: str, path: str):
return "https://api.bitbucket.org/2.0/repositories/" + repository + path
return ""
if __name__ == "__main__":
main()