From bf12c40487fc3ce13793a90a38c42c66ff47382b Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Tue, 10 Dec 2024 13:09:32 -0600 Subject: [PATCH] Update artifact names --- .github/workflows/publish.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index de58611a..29c17e27 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -141,7 +141,7 @@ jobs: - name: Archive source dist and wheel uses: actions/upload-artifact@v4 with: - name: artifacts + name: artifacts-${{ runner.os }} path: dist retention-days: 2 @@ -163,10 +163,22 @@ jobs: python -m pip install --upgrade pip pip install twine - - name: Download wheels and sdist + - name: Download Linux wheels and sdist uses: actions/download-artifact@v4 with: - name: artifacts + name: artifacts-Linux + path: dist + + - name: Download Windows wheels and sdist + uses: actions/download-artifact@v4 + with: + name: artifacts-Windows + path: dist + + - name: Download Mac wheels and sdist + uses: actions/download-artifact@v4 + with: + name: artifacts-macOS path: dist - name: Publish PyPI package