Skip to content

Commit

Permalink
Merge pull request #50 from v3io/semver-only
Browse files Browse the repository at this point in the history
Use semver only. Drop custom pattern.
  • Loading branch information
dinal authored Apr 27, 2020
2 parents b8cc267 + 5bc4072 commit 2f7cb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ podTemplate(label: "${git_project}-${label}", inheritFrom: "jnlp-docker") {
common.notify_slack {
stage('get tag data') {
container('jnlp') {
TAG_VERSION = github.get_tag_version(TAG_NAME, '^(v[\\.0-9]*.*-v[\\.0-9]*|unstable)\$')
DOCKER_TAG_VERSION = github.get_docker_tag_version(TAG_NAME, '^(v[\\.0-9]*.*-v[\\.0-9]*|unstable)\$')
TAG_VERSION = github.get_tag_version(TAG_NAME)
DOCKER_TAG_VERSION = github.get_docker_tag_version(TAG_NAME)

echo "$TAG_VERSION"
echo "$DOCKER_TAG_VERSION"
Expand Down

0 comments on commit 2f7cb27

Please sign in to comment.