We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7171610 commit d7d930fCopy full SHA for d7d930f
misc/python/materialize/mzbuild.py
@@ -1471,6 +1471,19 @@ def publish_multiarch_images(
1471
]
1472
)
1473
spawn.runv(["docker", "manifest", "push", name])
1474
+
1475
+ ghcr_prefix = "ghcr.io/materializeinc"
1476
+ ghcr_name = f"{ghcr_prefix}/{name}"
1477
+ spawn.runv(
1478
+ [
1479
+ "docker",
1480
+ "manifest",
1481
+ "create",
1482
+ ghcr_name,
1483
+ *(f"{ghcr_prefix}/{image.spec()}" for image in images),
1484
+ ]
1485
+ )
1486
+ spawn.runv(["docker", "manifest", "push", ghcr_name])
1487
print(f"--- Nofifying for tag {tag}")
1488
markdown = f"""Pushed images with Docker tag `{tag}`"""
1489
spawn.runv(
0 commit comments