Skip to content

Commit

Permalink
Fix deployment scripts - part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
adkerr committed Dec 20, 2019
1 parent 6057103 commit e9ac36c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Jenkinsfile
Expand Up @@ -2401,7 +2401,10 @@ def _build_trident(String name, String ssh_options, Map spec) {
)

// Tag the release
def release_name = 'v' + tag
def release_name = 'v' + env.TRIDENT_VERSION
if (env.BUILD_TYPE != 'stable') {
release_name = "${release_name}-${env.BUILD_TYPE}.${env.TRIDENT_REVISION}"
}
try {
echo "Creating script to tag the release"

Expand Down

0 comments on commit e9ac36c

Please sign in to comment.