From 48a0275b832c71b3cd3a28f6e7da14f0dabfd69a Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Thu, 2 Dec 2021 17:47:42 -0500 Subject: [PATCH] ci: fix binary tarball uploading for linux --- ci/deploy/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/deploy/linux.py b/ci/deploy/linux.py index 5d04d7380fc3a..0d6e417abb308 100644 --- a/ci/deploy/linux.py +++ b/ci/deploy/linux.py @@ -64,7 +64,7 @@ def main() -> None: for repo in repos: mz_path = Path(f"materialized-{repo.rd.arch}") ci_util.acquire_materialized(repo, mz_path) - deploy_util.deploy_tarball("x86_64-unknown-linux-gnu", mz_path) + deploy_util.deploy_tarball(f"{repo.rd.arch}-unknown-linux-gnu", mz_path) def publish_deb(arch: Arch, version: str) -> None: