We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b6c469 commit 312bdbdCopy full SHA for 312bdbd
.github/workflows/python-publish.yml
@@ -17,7 +17,7 @@ jobs:
17
name: Install Python
18
19
- name: Install cibuildwheel
20
- run: python -m pip install cibuildwheel==1.7.4 twine
+ run: python -m pip install cibuildwheel==1.7.4
21
22
- name: Build wheels for Windows
23
if: startsWith(matrix.os, 'windows')
@@ -33,9 +33,8 @@ jobs:
33
git submodule update --init --recursive
34
python -m cibuildwheel --output-dir wheels
35
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
+ - uses: actions/upload-artifact@v2
+ name: Upload wheels
+ with:
+ name: wheels
+ path: ./wheels/*.whl
0 commit comments