Merged in bugfix/pipeline-run-tag (pull request #18)
bugfix: pipeline run tag Approved-by: Jonathan Teran
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
## Martes, 4 de Noviembre de 2025, 20:59
|
||||
|
||||
- Autor: [Jonathan Teran Carballo](mailto:jonathan.nerat@gmail.com)
|
||||
- Rama: `bugfix/pipeline-run-tag`
|
||||
|
||||
### Commits
|
||||
|
||||
- **bugfix**: cambio script de build para ejecutar git-flow tag (34b07ab)
|
||||
- bitbucket-pipelines.yml (M)
|
||||
- pyproject.toml (M)
|
||||
|
||||
---
|
||||
|
||||
## Lunes, 3 de Noviembre de 2025, 21:54
|
||||
|
||||
- Autor: [Jonathan Teran Carballo](mailto:jonathan.nerat@gmail.com)
|
||||
|
||||
@@ -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
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user