Skip to content

Commit

Permalink
Poke CI
Browse files Browse the repository at this point in the history
  • Loading branch information
imciner2 authored Jun 21, 2024
1 parent 8d6af30 commit 2798c80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,15 @@ jobs:
uses: actions/download-artifact@v4
with:
pattern: wheels*
path: wheelhouse
path: dist

- name: Print out packages
run: ls -la wheelhouse/*
run: ls -la dist/*

- name: Upload wheels to pypi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.testpypi_password }}
run: |
python -m pip install --upgrade twine
twine upload --verbose --repository testpypi wheelhouse/*
twine upload --verbose --repository testpypi dist/*

0 comments on commit 2798c80

Please sign in to comment.