Fix issue with newer upload-artifact in PyPI action (#4512)

Github is breaking older upload-artifact in a few weeks
This commit is contained in:
Shantanu 2024-11-14 07:43:59 -08:00 committed by GitHub
parent d670b0439c
commit f6c7c98f34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,9 +97,9 @@ jobs:
only: ${{ matrix.only }} only: ${{ matrix.only }}
- name: Upload wheels as workflow artifacts - name: Upload wheels as workflow artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.name }}-mypyc-wheels name: ${{ matrix.only }}-mypyc-wheels
path: ./wheelhouse/*.whl path: ./wheelhouse/*.whl
- if: github.event_name == 'release' - if: github.event_name == 'release'