From 6c5ed4449376b3083c53476081f3035e7868b9f7 Mon Sep 17 00:00:00 2001 From: jmaslanka <jmaslanka@protonmail.com> Date: Tue, 11 Mar 2025 16:21:33 +0100 Subject: [PATCH] 2.26.7 --- .gitlab-ci.yml | 16 ++++++++++++++-- satella/__init__.py | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fa6270c8..7c499e91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - test - build + - deploy pages: image: zoo.smok.co/build/build:latest @@ -69,10 +70,21 @@ build_python: artifacts: paths: - "*.whl" - after_script: - - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi *.whl only: - tags except: - branches + +deploy_package: + stage: deploy + before_script: + - pip install --break-system-package --upgrade twine + script: + - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python3 -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi *.whl + dependencies: + - build_python + only: + - tags + except: + - branches diff --git a/satella/__init__.py b/satella/__init__.py index ccb871bf..478be81f 100644 --- a/satella/__init__.py +++ b/satella/__init__.py @@ -1 +1 @@ -__version__ = '2.26.7a1' +__version__ = '2.26.7' -- GitLab