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 a2b03f5Copy full SHA for a2b03f5
misc/python/materialize/mzbuild.py
@@ -1471,6 +1471,18 @@ def publish_multiarch_images(
1471
]
1472
)
1473
spawn.runv(["docker", "manifest", "push", name])
1474
+
1475
+ ghcr_name = f"ghcr.io/materializeinc/{name}"
1476
+ spawn.runv(
1477
+ [
1478
+ "docker",
1479
+ "manifest",
1480
+ "create",
1481
+ ghcr_name,
1482
+ *(image.spec() for image in images),
1483
+ ]
1484
+ )
1485
+ spawn.runv(["docker", "manifest", "push", ghcr_name])
1486
print(f"--- Nofifying for tag {tag}")
1487
markdown = f"""Pushed images with Docker tag `{tag}`"""
1488
spawn.runv(
0 commit comments