Skip to content

Commit

Permalink
Fix issue with newer upload-artifact in PyPI action (#4512)
Browse files Browse the repository at this point in the history
Github is breaking older upload-artifact in a few weeks
  • Loading branch information
hauntsaninja authored Nov 14, 2024
1 parent d670b04 commit f6c7c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit f6c7c98

Please sign in to comment.