diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:29:37 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:29:37 -0500 |
commit | 9e857da959a2a5998a799b651ac26d57f4e61f09 (patch) | |
tree | 46f101936024c1ba268f15ddc4d79f55b78d515e /build.py | |
parent | Reenable Ubuntu 24.04 noble (diff) | |
download | jellyfin-packaging-9e857da959a2a5998a799b651ac26d57f4e61f09.tar.gz jellyfin-packaging-9e857da959a2a5998a799b651ac26d57f4e61f09.tar.bz2 jellyfin-packaging-9e857da959a2a5998a799b651ac26d57f4e61f09.zip |
Add logging for image and manifest pushes
Diffstat (limited to 'build.py')
-rwxr-xr-x | build.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -355,14 +355,18 @@ def build_docker(jellyfin_version, build_type, _build_arch, _build_version): # Push the images and manifests to DockerHub (we are already logged in from GH Actions) for image in images: + print(f">>> Pushing image {image} to DockerHub") os.system(f"docker push {image}") for manifest in manifests: + print(f">>> Pushing manifest {manifest} to DockerHub") os.system(f"docker manifest push --purge {manifest}") # Push the images and manifests to GHCR (we are already logged in from GH Actions) for image in images: + print(f">>> Pushing image {image} to GHCR") os.system(f"docker push ghcr.io/{image}") for manifest in manifests: + print(f">>> Pushing manifest {manifest} to GHCR") os.system(f"docker manifest push --purge ghcr.io/{manifest}") |