commit | 744e239390fa6d8313c7ee9a5f4f2e83559d9d52 | [log] [tgz] |
---|---|---|
author | Jonatan Antoni <jonatan.antoni@arm.com> | Thu Jan 27 16:58:49 2022 +0100 |
committer | Jonatan Antoni <jonatan.antoni@arm.com> | Thu Jan 27 16:58:49 2022 +0100 |
tree | 34b131b9c5dfbd71a20ce3b3582edcd0df1ef9a4 | |
parent | a2ea33fee9f483e3238cb46fae00008d5309b36d [diff] [blame] |
Pack: Fixed pack version inference from git - Consider even unannotated tags in git describe.
diff --git a/Jenkinsfile b/Jenkinsfile index 8e2ef73..375bf37 100644 --- a/Jenkinsfile +++ b/Jenkinsfile
@@ -132,7 +132,7 @@ script { COMMIT = checkoutScmWithRetry(3) echo "COMMIT: ${COMMIT}" - VERSION = (sh(returnStdout: true, script: 'git describe --always')).trim() + VERSION = (sh(returnStdout: true, script: 'git describe --tags --always')).trim() echo "VERSION: '${VERSION}'" }