Bump to v7.2.11
This commit is contained in:
parent
de010281b4
commit
33fc9de37a
1 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
local VERSION = "7.2.11";
|
||||||
|
|
||||||
local build(contrib=false) = {
|
local build(contrib=false) = {
|
||||||
"kind": "pipeline",
|
"kind": "pipeline",
|
||||||
"name": "build" + (if contrib then "-contrib" else ""),
|
"name": "build" + (if contrib then "-contrib" else ""),
|
||||||
|
@ -6,7 +8,7 @@ local build(contrib=false) = {
|
||||||
"name": "set image tags",
|
"name": "set image tags",
|
||||||
"image": "alpine",
|
"image": "alpine",
|
||||||
"environment": {
|
"environment": {
|
||||||
"VERSION": "7.2.10-r2"
|
"VERSION": VERSION
|
||||||
},
|
},
|
||||||
"commands": [
|
"commands": [
|
||||||
"./write-tags.sh $VERSION" + (if contrib then " contrib" else " ") + "> .tags",
|
"./write-tags.sh $VERSION" + (if contrib then " contrib" else " ") + "> .tags",
|
||||||
|
@ -26,7 +28,7 @@ local build(contrib=false) = {
|
||||||
"from_secret": "docker_password"
|
"from_secret": "docker_password"
|
||||||
},
|
},
|
||||||
"build_args": std.prune([
|
"build_args": std.prune([
|
||||||
"ATHEME_VERSION=7.2.10-r2",
|
"ATHEME_VERSION=" + VERSION,
|
||||||
(if contrib then "BUILD_CONTRIB_MODULES=true")
|
(if contrib then "BUILD_CONTRIB_MODULES=true")
|
||||||
])
|
])
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue