Skip to content

Commit 35cd756

Browse files
fix(CI): update to override the new versioning variable (#72)
1 parent cd0f563 commit 35cd756

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,9 @@ node('linux') {
160160
echo "Updated glide.yaml:\n${glideYaml}"
161161

162162
make 'glideup'
163-
sh "VERSION=${git_commit.take(7)} make build-revision"
163+
env.REVISION = git_commit.take(7)
164+
env.VERSION = "csdk-ci-" + git_commit.take(7)
165+
make 'build-revision'
164166

165167
stage "Deploy ${repo}"
166168
upload_artifacts()

0 commit comments

Comments
 (0)