Skip to content

Commit 52bd69a

Browse files
authored
Update build_arm.yml
1 parent 4003d45 commit 52bd69a

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

.github/workflows/build_arm.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,30 @@ jobs:
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+
# uses: actions/[email protected]
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

0 commit comments

Comments
 (0)