From a59c9db2bc47d7101230ee4e37b625176b692599 Mon Sep 17 00:00:00 2001 From: "Mike C. Fletcher" Date: Tue, 31 Dec 2024 17:00:17 -0500 Subject: [PATCH] BUILD Artifact Upload change (does not allow the same name for artifacts) --- .github/workflows/accelerate-manylinux.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/accelerate-manylinux.yml b/.github/workflows/accelerate-manylinux.yml index 7c35bfa6..05d6187a 100644 --- a/.github/workflows/accelerate-manylinux.yml +++ b/.github/workflows/accelerate-manylinux.yml @@ -94,7 +94,7 @@ jobs: - name: Save wheels uses: actions/upload-artifact@v4 with: - name: accel-binary + name: accel-binary-${{ matrix.os }} path: accelerate/dist/*.whl pypi-publish-accel: @@ -115,11 +115,23 @@ jobs: with: name: accel path: dist - - name: Download Accelerate Binary + - name: Download Accelerate Binary Windows uses: actions/download-artifact@v4.1.7 - id: download-accelerate-bin + id: download-accelerate-bin-windows with: - name: accel-binary + name: accel-binary-windows-latest + path: dist + - name: Download Accelerate Binary Ubuntu + uses: actions/download-artifact@v4.1.7 + id: download-accelerate-bin-ubuntu + with: + name: accel-binary-ubuntu-latest + path: dist + - name: Download Accelerate Binary MacOS + uses: actions/download-artifact@v4.1.7 + id: download-accelerate-bin-macOS + with: + name: accel-binary-macOS-latest path: dist # retrieve your distributions here