aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.py3
1 files changed, 3 insertions, 0 deletions
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")
bgstack15