From: Alexander Goussas Date: Thu, 30 Apr 2026 18:27:17 +0000 (-0500) Subject: ci: update build script X-Git-Tag: v0.0.3~4 X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=1c4ec8a4c336dfbbe3c2523cec32d042852dcc6d;p=frustrated-functor.dev.git ci: update build script --- diff --git a/scripts/build.sh b/scripts/build.sh index 20c1d67..191308c 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -26,10 +26,13 @@ if [ $? -ne 0 ]; then fi echo "[INFO] Building docker image $IMAGE" -docker build -t "$IMAGE" --push . +docker build -t "$IMAGE" . echo "[INFO] Aliasing $IMAGE to $REPO:latest" docker tag "$IMAGE" "$REPO:latest" + +echo "[INFO] Pushing new images" +docker push "$IMAGE" docker push "$REPO:latest" exit 0