Skip to content

Commit

Permalink
fix artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
carderne committed Jul 31, 2024
1 parent 83a4ed8 commit be3cadb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true

- name: Copy artifacts to dist/ folder
run: |
mkdir -p dist/
find . -name '*.tar.gz' -exec mv '{}' dist/ \;
find . -name '*.whl' -exec mv '{}' dist/ \;
mv *.tar.gz dist/
mv *.whl dist/
- name: Upload
uses: pypa/[email protected]
Expand Down

0 comments on commit be3cadb

Please sign in to comment.