From a26faa46d06ed3870ab43282c0f6df3bd140898a Mon Sep 17 00:00:00 2001 From: az Date: Fri, 3 Dec 2021 15:51:54 +0100 Subject: [PATCH] v0.8.2 exclude commit tag format check for fatjars job --- .gitlab-ci.yml | 4 +++- build.gradle | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7a01a9..c2b948d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,8 @@ before_script: - echo "---------- Start CI ----------" - export GRADLE_USER_HOME=`pwd`/.gradle - chmod +x gradlew + - echo "------ commit tag ---------------" + - echo $CI_COMMIT_TAG cache: paths: @@ -77,7 +79,7 @@ fatjars: when: never # Only execute when a valid version tag like v1.0, 2.3 or similar is given # Required is always one point like 1.0 - - if: $CI_COMMIT_REF_NAME == "master" && $CI_COMMIT_TAG =~ /^v?[0-9]+[.][0-9]+([.][0-9]+)?$/ + - if: $CI_COMMIT_REF_NAME == "master" # fix: && $CI_COMMIT_TAG =~ /^v?[0-9]+[.][0-9]+([.][0-9]+)?$/ before_script: - echo $CI_JOB_ID # Writing FATJAR_JOB_ID variable to environment file, as variable is needed in the release stage. diff --git a/build.gradle b/build.gradle index 101bcb1..1bf9d7f 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'kotlinx-serialization' group = 'org.domaindrivenarchitecture.provs' -version = '0.8.23' +version = '0.8.24' repositories { mavenCentral()