Compare commits

...

2 Commits

Author SHA1 Message Date
6341072b0b
Merge pull request 'fix regex for tagging' (!74) from bugfix/fix-regex into master
All checks were successful
rvr-nextgen/pipeline/head This commit looks good
rvr-nextgen/pipeline/tag This commit looks good
Reviewed-on: #74
2023-10-01 00:15:15 +02:00
1dbd813bef
fix regex for tagging
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
2023-10-01 00:13:27 +02:00

2
Jenkinsfile vendored
View File

@ -100,7 +100,7 @@ pipeline {
label: 'Build Docker image'
if (env.BRANCH_NAME == 'master') {
if (env.VERSION ==~ '-\\d+-g[a-f0-9]{7}') {
if (env.VERSION ==~ '.*-\\d+-g[a-f0-9]{7}') {
env.FIXED_VERSION = 'dev'
} else {
env.FIXED_VERSION = 'stable'