From 6d5b5a3a506aa0b7ded3f856423b229356bbb458 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sat, 7 Mar 2026 09:47:37 +0700 Subject: [PATCH] fix: Rename publish command to push for consistency in Justfile --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 52fe1c1..97ca05f 100644 --- a/Justfile +++ b/Justfile @@ -24,7 +24,7 @@ build db=VARIANT: docker build -f {{db}}/Dockerfile -t ${PREFIX}${IMAGE} {{db}} # Build and push image to registry -publish db=VARIANT: +push db=VARIANT: #!/usr/bin/env bash PREFIX=${REGISTRY_URL:+${REGISTRY_URL}/} IMAGE="database-{{db}}:{{VERSION}}"