Skip to content

Commit

Permalink
Fix CI unpack
Browse files Browse the repository at this point in the history
  • Loading branch information
lexiforest committed Nov 29, 2024
1 parent 7d6b43a commit f5c1d68
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,21 @@ jobs:
pattern: curl_cffi-*
path: download

- run: |
ls download
unzip download/\*.zip -d dist
ls -al dist
- uses: pypa/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
password: ${{ secrets.PYPI_TOKEN }}
packages-dir: download/
packages-dir: dist/

- name: Upload release files
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: |
./download/*.whl
./download/*.tar.gz
./dist/*.whl
./dist/*.tar.gz

0 comments on commit f5c1d68

Please sign in to comment.