From 33fc9de37a6d49fce843e46f65527d7584485004 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 18 Dec 2021 10:40:27 -0800 Subject: [PATCH] Bump to v7.2.11 --- .drone.jsonnet | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 9e13296..343d6f1 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -1,3 +1,5 @@ +local VERSION = "7.2.11"; + local build(contrib=false) = { "kind": "pipeline", "name": "build" + (if contrib then "-contrib" else ""), @@ -6,7 +8,7 @@ local build(contrib=false) = { "name": "set image tags", "image": "alpine", "environment": { - "VERSION": "7.2.10-r2" + "VERSION": VERSION }, "commands": [ "./write-tags.sh $VERSION" + (if contrib then " contrib" else " ") + "> .tags", @@ -26,7 +28,7 @@ local build(contrib=false) = { "from_secret": "docker_password" }, "build_args": std.prune([ - "ATHEME_VERSION=7.2.10-r2", + "ATHEME_VERSION=" + VERSION, (if contrib then "BUILD_CONTRIB_MODULES=true") ]) },