]> git.frustrated-labs.net Git - frustrated-functor.dev.git/commitdiff
ci: update build script
authorAlexander Goussas <[email protected]>
Thu, 30 Apr 2026 18:27:17 +0000 (13:27 -0500)
committerAlexander Goussas <[email protected]>
Thu, 30 Apr 2026 18:27:17 +0000 (13:27 -0500)
scripts/build.sh

index 20c1d67bddc1630c31de97fa2d469112106da137..191308c3ded6803a5c5d9d48fa71d0282be0a0a7 100755 (executable)
@@ -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