Skip to content

Commit

Permalink
Migrate to actions/upload-artifact@v4.
Browse files Browse the repository at this point in the history
The version number was increased without accounting for
backwards-incompatible changes.
  • Loading branch information
aaugustin committed Aug 20, 2024
1 parent f9c20d0 commit 323adef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- name: Save sdist & wheel
uses: actions/upload-artifact@v4
with:
name: dist-architecture-independent
path: |
dist/*.tar.gz
dist/*.whl
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:
- name: Save wheels
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.os }}
path: wheelhouse/*.whl

upload:
Expand All @@ -74,7 +76,8 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: artifact
pattern: dist-*
merge-multiple: true
path: dist
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit 323adef

Please sign in to comment.