From 2a6a03fe260a717f7bbbc3c1b7ff4e752bc38fa6 Mon Sep 17 00:00:00 2001 From: Daniel Chambre Date: Mon, 10 Feb 2025 14:15:48 +0100 Subject: [PATCH] fix missing "$" Signed-off-by: Daniel Chambre --- docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 223df36e..779344d2 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -15,7 +15,7 @@ variable "revision" { default = "" } -fullname = ( environment == "testing") ? "${registry}/postgresql-testing" : "{registry}/postgresql" +fullname = ( environment == "testing") ? "${registry}/postgresql-testing" : "${registry}/postgresql" now = timestamp() authors = "The CloudNativePG Contributors" url = "https://github.com/cloudnative-pg/postgres-containers"