Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lexiforest committed Nov 29, 2024
1 parent ab81a84 commit b021ce2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:

- run: |
ls download
unzip download/\*.zip -d dist
ls -al dist
unzip download/\*.zip -d download
ls -al download
upload_all:
Expand All @@ -104,17 +104,18 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
pattern: curl_cffi-*
path: dist
path: download

# - uses: pypa/[email protected]
# if: startsWith(github.ref, 'refs/tags/')
# with:
# password: ${{ secrets.PYPI_TOKEN }}
# packages-dir: download/

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

0 comments on commit b021ce2

Please sign in to comment.