Skip to content

Commit

Permalink
Migrate to upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
tancnle committed Jan 31, 2024
1 parent 2a22097 commit 99ae6a8
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
CIBW_ARCHS_LINUX: auto aarch64
CIBW_BUILD_VERBOSITY: 3

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: wheelhouse
path: ./wheelhouse/*.whl
name: wheelhouse-${{ matrix.os }}
path: dist

upload:
# Skip this step on pull requests. Run only when pushing a version tag.
Expand All @@ -61,11 +61,10 @@ jobs:
- name: Stage wheels
uses: actions/download-artifact@v4
with:
name: wheelhouse
path: wheelhouse
pattern: wheelhouse-*
merge-multiple: true
path: dist
- run: |
mkdir dist
mv -v wheelhouse/* dist/
ls -l dist/
- name: Publish package
Expand Down

0 comments on commit 99ae6a8

Please sign in to comment.