v0.8.25 fix ci for commit tag in release job
This commit is contained in:
parent
a26faa46d0
commit
2fea9c257e
2 changed files with 7 additions and 4 deletions
|
@ -29,7 +29,7 @@ build:
|
||||||
- build/libs/*.jar
|
- build/libs/*.jar
|
||||||
expire_in: 1 week
|
expire_in: 1 week
|
||||||
|
|
||||||
test:
|
.test:
|
||||||
stage: test
|
stage: test
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_TAG == null # don't run for git tags
|
- if: $CI_COMMIT_TAG == null # don't run for git tags
|
||||||
|
@ -79,13 +79,16 @@ fatjars:
|
||||||
when: never
|
when: never
|
||||||
# Only execute when a valid version tag like v1.0, 2.3 or similar is given
|
# Only execute when a valid version tag like v1.0, 2.3 or similar is given
|
||||||
# Required is always one point like 1.0
|
# Required is always one point like 1.0
|
||||||
- if: $CI_COMMIT_REF_NAME == "master" # fix: && $CI_COMMIT_TAG =~ /^v?[0-9]+[.][0-9]+([.][0-9]+)?$/
|
- if: '$CI_COMMIT_REF_NAME == "master" && $CI_COMMIT_TAG =~ /^v?[0-9]+[.][0-9]+([.][0-9]+)?$/'
|
||||||
before_script:
|
before_script:
|
||||||
- echo $CI_JOB_ID
|
- echo $CI_JOB_ID
|
||||||
# Writing FATJAR_JOB_ID variable to environment file, as variable is needed in the release stage.
|
# Writing FATJAR_JOB_ID variable to environment file, as variable is needed in the release stage.
|
||||||
- echo FATJAR_JOB_ID=$CI_JOB_ID >> generate_executables.env
|
- echo FATJAR_JOB_ID=$CI_JOB_ID >> generate_executables.env
|
||||||
script:
|
script:
|
||||||
- echo "---------- create fatjar ----------"
|
- echo "---------- create fatjar ----------"
|
||||||
|
- echo $CI_COMMIT_TAG
|
||||||
|
- echo "$CI_COMMIT_TAG"
|
||||||
|
- echo '$CI_COMMIT_TAG'
|
||||||
- ./gradlew fatJarLatest
|
- ./gradlew fatJarLatest
|
||||||
- ./gradlew fatJarK3s
|
- ./gradlew fatJarK3s
|
||||||
artifacts:
|
artifacts:
|
||||||
|
@ -107,7 +110,7 @@ release:
|
||||||
when: never
|
when: never
|
||||||
# Only execute when a valid version tag like v1.0, 2.3 or similar is given
|
# Only execute when a valid version tag like v1.0, 2.3 or similar is given
|
||||||
# Required is always one point like 1.0
|
# 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" && $CI_COMMIT_TAG =~ /^v?[0-9]+[.][0-9]+([.][0-9]+)?$/'
|
||||||
needs:
|
needs:
|
||||||
- job: fatjars
|
- job: fatjars
|
||||||
artifacts: true
|
artifacts: true
|
||||||
|
|
|
@ -18,7 +18,7 @@ apply plugin: 'kotlinx-serialization'
|
||||||
|
|
||||||
|
|
||||||
group = 'org.domaindrivenarchitecture.provs'
|
group = 'org.domaindrivenarchitecture.provs'
|
||||||
version = '0.8.24'
|
version = '0.8.25'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
Loading…
Reference in a new issue