Skip to content

Commit

Permalink
ci: update upload and download Action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Jan 2, 2024
1 parent 1ddc7dd commit 0e4f899
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
run: |
pipx run build --sdist --outdir=wheelhouse
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-wheels
name: python-wheels-${{ matrix.sys.os }}
path: |
./wheelhouse/*.whl
./wheelhouse/*.tar.gz
Expand All @@ -58,10 +58,11 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: python-wheels
pattern: python-wheels*
path: dist
merge-multiple: true

- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
Expand Down

0 comments on commit 0e4f899

Please sign in to comment.