Skip to content

Commit

Permalink
test upload-artifactv4
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Sep 3, 2024
1 parent a8ddd27 commit 7d927b6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,31 @@ jobs:
name: sdist
with:
path: dist/*.tar.gz

test_upload:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
name: test upload-artifactv4
steps:
# retrieve all artifacts
- uses: actions/download-artifact@v4
with:
name: sdist
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-ubuntu-20.04
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-macos-13
path: dist
- uses: actions/download-artifact@v4
with:
name: wheels-windows-2022
path: dist

- name: list all files
run: |
ls -lh dist/
tree dist/

0 comments on commit 7d927b6

Please sign in to comment.