aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlli Vuolteenaho <olli.vuolteenaho@qt.io>2025-11-27 12:56:59 +0200
committerOlli Vuolteenaho <olli.vuolteenaho@qt.io>2025-11-28 06:38:59 +0200
commitc9ff32177a0a675c30e5d06bae0280e08958159d (patch)
tree82ab8ac669a84b1f42b759ddc38cacc55935df50
parente7840ee5e07145f898d758610d896c1b2c4b1115 (diff)
Append build artifact with version numberHEADdev
This should make it easier to make sure we're dealing with the current version. The resulting file will look like: ~/d/android-studio-tools (dev)> ls build/distributions/ QtTAS-4.1.zip Task-number: QTQAINFRA-7390 Change-Id: Ie46236a6146c91d922f807864299d99fc8a99eb4 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
-rw-r--r--build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index e0ee317..b05c758 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -59,3 +59,7 @@ intellijPlatform {
}
}
}
+
+tasks.buildPlugin {
+ archiveBaseName = "${rootProject.name}-${providers.gradleProperty("pluginVersion").get()}"
+}