diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml new file mode 100644 index 0000000..9aa74a8 --- /dev/null +++ b/bitbucket-pipelines.yml @@ -0,0 +1,17 @@ +image: python:3.12-slim-bookworm +pipelines: + branches: + 'dev': + - step: + name: "Tag dev" + script: + - cd $BITBUCKET_CLONE_DIR + - pip install -r requirements.txt + - ./git-flow tag $BEARER + 'main': + - step: + name: "Tag main" + script: + - cd $BITBUCKET_CLONE_DIR + - pip install -r requirements.txt + - ./git-flow tag $BEARER diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..80e01dd --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +certifi==2025.10.5 +charset-normalizer==3.4.4 +idna==3.11 +requests==2.32.5 +urllib3==2.5.0