From bddb4cd79f4c0b908e45f85a7262c641ae0ed711 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 3 Mar 2024 19:25:10 -0500 Subject: Add login step --- build.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'build.py') diff --git a/build.py b/build.py index b646b18..1bb144d 100755 --- a/build.py +++ b/build.py @@ -400,6 +400,9 @@ def build_docker(jellyfin_version, build_type, _build_arch, _build_version): ) manifests.append(f"{configurations['docker']['imagename']}:unstable") + # Log in to docker hub + os.system("docker login 2>&1") + # Push the images and manifests to DockerHub (we are already logged in from GH Actions) for image in images: log(f">>> Pushing image {image} to DockerHub") -- cgit