From 9b7f96685bf9bddeb79d5c593d61cb161bd5c416 Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 7 Mar 2024 22:16:42 +0100 Subject: [PATCH] Only use manylinux wheels --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ddda2fcee..5cf1e4bbf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -213,13 +213,13 @@ jobs: uses: actions/download-artifact@v4 with: name: packages-linux-auto64 - pattern: "*cp312*.whl" + pattern: "*cp312-manylinux*.whl" path: dist/ - name: load Linux arm distribution 📦 uses: actions/download-artifact@v4 with: name: packages-linux-aarch64 - pattern: "*cp312*.whl" + pattern: "*cp312-manylinux*.whl" path: dist/ - name: Build (and potentially push) the Docker image uses: docker/build-push-action@v5