bugfix: cambio llamada a pip en pipeline

This commit is contained in:
jt
2025-11-02 12:40:42 -03:00
parent 42b1c28cb9
commit 733002482f
+2 -2
View File
@@ -5,12 +5,12 @@ pipelines:
name: "Tag dev" name: "Tag dev"
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install -r requirements.txt - python -m pip install -r requirements.txt
- ./git-flow tag $BEARER - ./git-flow tag $BEARER
'main': 'main':
- step: - step:
name: "Tag main" name: "Tag main"
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install -r requirements.txt - python -m pip install -r requirements.txt
- ./git-flow tag $BEARER - ./git-flow tag $BEARER