File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed
Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 3232 env :
3333 CIBW_ARCHS : ${{ matrix.cibw_archs }}
3434 CIBW_SKIP : " pp*"
35- CIBW_TEST_REQUIRES : pytest
36- CIBW_TEST_COMMAND : pytest {package}
3735 - uses : actions/upload-artifact@v3
3836 with :
3937 path : ./wheelhouse/*.whl
38+ # publish:
39+ # needs: build_wheels
40+ # name: Publish to PyPI
41+ # runs-on: ubuntu-latest
42+
43+ # steps:
44+ # - name: Set up Python
45+ 46+ # with:
47+ # python-version: '3.x'
48+ # - name: Install twine
49+ # run: |
50+ # python -m pip install --upgrade pip
51+ # pip install twine
52+ # - name: Download Artifacts
53+ # uses: actions/download-artifact@v3
54+ # with:
55+ # name: wheels
56+ # path: ./wheelhouse
57+ # - name: Publish
58+ # env:
59+ # TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
60+ # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
61+ # run: twine upload ./wheelhouse/* --skip-existing
You can’t perform that action at this time.
0 commit comments