From 52bd69accc9a86f8a757c6fa86085f75fb9daee9 Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Sat, 26 Oct 2024 14:35:42 -0700 Subject: [PATCH] Update build_arm.yml --- .github/workflows/build_arm.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_arm.yml b/.github/workflows/build_arm.yml index 137cd5d..94af2b8 100644 --- a/.github/workflows/build_arm.yml +++ b/.github/workflows/build_arm.yml @@ -32,8 +32,30 @@ jobs: env: CIBW_ARCHS: ${{ matrix.cibw_archs }} CIBW_SKIP: "pp*" - CIBW_TEST_REQUIRES: pytest - CIBW_TEST_COMMAND: pytest {package} - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl + # publish: + # needs: build_wheels + # name: Publish to PyPI + # runs-on: ubuntu-latest + + # steps: + # - name: Set up Python + # uses: actions/setup-python@v5.3.0 + # with: + # python-version: '3.x' + # - name: Install twine + # run: | + # python -m pip install --upgrade pip + # pip install twine + # - name: Download Artifacts + # uses: actions/download-artifact@v3 + # with: + # name: wheels + # path: ./wheelhouse + # - name: Publish + # env: + # TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + # run: twine upload ./wheelhouse/* --skip-existing