From 873d355df1737cc603c6d7fbc42bb2359014816b Mon Sep 17 00:00:00 2001 From: Marcel Stimberg Date: Thu, 7 Mar 2024 22:03:03 +0100 Subject: [PATCH] download with correct package names --- .github/workflows/publish.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 683cccda0..ddda2fcee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -209,10 +209,16 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: load Linux distribution 📦 + - name: load Linux x86 distribution 📦 uses: actions/download-artifact@v4 with: - name: packages-linux + name: packages-linux-auto64 + pattern: "*cp312*.whl" + path: dist/ + - name: load Linux arm distribution 📦 + uses: actions/download-artifact@v4 + with: + name: packages-linux-aarch64 pattern: "*cp312*.whl" path: dist/ - name: Build (and potentially push) the Docker image