From 68bf132cac02fda83e8c9fe9e1da69cef7b8e1b1 Mon Sep 17 00:00:00 2001 From: pschork <354473+pschork@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:06:39 -0700 Subject: [PATCH] Fix docker-publish-release docker bake (#772) --- docker-bake.hcl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 92b604da1..f9167dc74 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -1,6 +1,10 @@ # VARIABLES variable "REGISTRY" { - default = "ghcr.io/layr-labs/eigenda" + default = "ghcr.io" +} + +variable "REPO" { + default = "layr-labs/eigenda" } variable "BUILD_TAG" { @@ -126,11 +130,11 @@ target "_release" { target "node-release" { inherits = ["node", "_release"] - tags = ["${REGISTRY}/opr-node:${BUILD_TAG}"] + tags = ["${REGISTRY}/${REPO}/opr-node:${BUILD_TAG}"] } target "nodeplugin-release" { inherits = ["nodeplugin", "_release"] - tags = ["${REGISTRY}/opr-nodeplugin:${BUILD_TAG}"] + tags = ["${REGISTRY}/${REPO}/opr-nodeplugin:${BUILD_TAG}"] }