Build and push at the same time for convenience

This commit is contained in:
lumi 2024-11-30 14:56:55 +11:00
parent 101e6fb77f
commit cf4974a09d
Signed by: luaneko
GPG Key ID: 406809B8763FF07A

7
build
View File

@ -1,2 +1,7 @@
#!/usr/bin/env bash #!/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"