Skip to content

Commit 312bdbd

Browse files
authored
Update python-publish.yml
1 parent 3b6c469 commit 312bdbd

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Install Python
1818

1919
- name: Install cibuildwheel
20-
run: python -m pip install cibuildwheel==1.7.4 twine
20+
run: python -m pip install cibuildwheel==1.7.4
2121

2222
- name: Build wheels for Windows
2323
if: startsWith(matrix.os, 'windows')
@@ -33,9 +33,8 @@ jobs:
3333
git submodule update --init --recursive
3434
python -m cibuildwheel --output-dir wheels
3535
36-
- name: Upload to PyPI
37-
env:
38-
TWINE_USERNAME: ${{ secrets.TPYPI_USERNAME }}
39-
TW1INE_PASSWORD: ${{ secrets.TPYPI_PASSWORD }}
40-
run: |
41-
twine upload --repository testpypi ./wheels/*.whl
36+
- uses: actions/upload-artifact@v2
37+
name: Upload wheels
38+
with:
39+
name: wheels
40+
path: ./wheels/*.whl

0 commit comments

Comments
 (0)