Skip to content

Commit 796423b

Browse files
authored
fix: condition when evaluating legacy rolling tags (#313)
Signed-off-by: Niccolò Fei <niccolo.fei@enterprisedb.com>
1 parent 2092308 commit 796423b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ target "default" {
7474
"${fullname}:${index(split(".",cleanVersion(pgVersion)),0)}-${tgt}-${distroVersion(base)}",
7575
"${fullname}:${cleanVersion(pgVersion)}-${tgt}-${distroVersion(base)}",
7676
"${fullname}:${cleanVersion(pgVersion)}-${formatdate("YYYYMMDDhhmm", now)}-${tgt}-${distroVersion(base)}",
77-
], (tgt == "system" && distroVersion(base) == "bullseye" && isPreview(pgVersion) == "false") ? getRollingTags("${fullname}", pgVersion) : [])
77+
], (tgt == "system" && distroVersion(base) == "bullseye" && isPreview(pgVersion) == false) ? getRollingTags("${fullname}", pgVersion) : [])
7878
context = "."
7979
target = "${tgt}"
8080
args = {

0 commit comments

Comments
 (0)