From f6c7c98f34846fa36288572eecebb1535c685714 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Thu, 14 Nov 2024 07:43:59 -0800 Subject: [PATCH] Fix issue with newer upload-artifact in PyPI action (#4512) Github is breaking older upload-artifact in a few weeks --- .github/workflows/pypi_upload.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 48c4448..55ef8a3 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -97,9 +97,9 @@ jobs: only: ${{ matrix.only }} - name: Upload wheels as workflow artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: ${{ matrix.name }}-mypyc-wheels + name: ${{ matrix.only }}-mypyc-wheels path: ./wheelhouse/*.whl - if: github.event_name == 'release'