diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc70eef..c508132 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ pypi-dev: rules: - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' when: never - - if: '$CI_COMMIT_BRANCH == "main" && $CI_COMMIT_TAG !~ /^release-.*$/' + - if: '$CI_COMMIT_BRANCH == "main" && $CI_COMMIT_TAG !~ /^[0-9]+\.[0-9]+\.[0-9]+$/' script: - pyb publish upload @@ -45,6 +45,6 @@ pypi-stable: rules: - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' when: never - - if: '$CI_COMMIT_TAG =~ /^release-.*$/' + - if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/' script: - pyb -P version=${{ github.ref }} publish upload diff --git a/build.py b/build.py index 049c195..78af646 100644 --- a/build.py +++ b/build.py @@ -28,7 +28,7 @@ use_plugin("python.distutils") default_task = "publish" name = "ddadevops" -version = "0.14.2-dev" +version = "0.14.3-dev" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" description = __doc__ authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]