Skip to content

Commit

Permalink
ci: fix artifacts handling
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Dec 15, 2023
1 parent d79ba8b commit b46f522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheel-${{ matrix.config.platform }}

sdist:
runs-on: ubuntu-22.04
Expand All @@ -63,6 +64,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
name: sdist

check:
needs:
Expand All @@ -81,10 +83,8 @@ jobs:
run: pip install -r requirements-test.txt
- uses: actions/download-artifact@v4
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
path: dist
- run: find dist
- run: twine check dist/*.whl

publish:
Expand Down

0 comments on commit b46f522

Please sign in to comment.