aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 19:25:10 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 19:25:10 -0500
commitbddb4cd79f4c0b908e45f85a7262c641ae0ed711 (patch)
treec30e9626d8cc1f7ad8ff86cca49e63b9c8af0b4d
parentAvoid using amend for manifests (diff)
downloadjellyfin-packaging-bddb4cd79f4c0b908e45f85a7262c641ae0ed711.tar.gz
jellyfin-packaging-bddb4cd79f4c0b908e45f85a7262c641ae0ed711.tar.bz2
jellyfin-packaging-bddb4cd79f4c0b908e45f85a7262c641ae0ed711.zip
Add login step
-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