From cf4974a09d69998265d1d1af24ec0ecafbb113fc Mon Sep 17 00:00:00 2001 From: luaneko Date: Sat, 30 Nov 2024 14:56:55 +1100 Subject: [PATCH] Build and push at the same time for convenience --- build | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build b/build index 5846df5..eb3d480 100755 --- a/build +++ b/build @@ -1,2 +1,7 @@ #!/usr/bin/env bash -podman build -t git.lua.re/luaneko/luare-authentik --pull . +name=git.lua.re/luaneko/luare-authentik +tag=latest +image="$name:$tag" + +podman build -t "$image" --pull . +podman push "$image"