From 1166a49c26b5618286bd18f8f89bbfb0515f5b13 Mon Sep 17 00:00:00 2001 From: Herbert Lange Date: Mon, 25 Aug 2025 15:56:42 +0200 Subject: [PATCH] disable pypi publication for now --- .github/workflows/build-python-package.yml | 78 +++++++++++----------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml index 5aa5ae749..43bd9c3b5 100644 --- a/.github/workflows/build-python-package.yml +++ b/.github/workflows/build-python-package.yml @@ -59,51 +59,51 @@ jobs: name: wheel-${{ matrix.os }} path: ./wheelhouse - build_sdist: - name: Build source distribution - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 + # build_sdist: + # name: Build source distribution + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - name: Install Python - with: - python-version: '3.10' + # - uses: actions/setup-python@v5 + # name: Install Python + # with: + # python-version: '3.10' - - name: Build sdist - run: cd src/runtime/python && python setup.py sdist + # - name: Build sdist + # run: cd src/runtime/python && python setup.py sdist - - uses: actions/upload-artifact@v4 - with: - name: wheel-source - path: ./src/runtime/python/dist/*.tar.gz + # - uses: actions/upload-artifact@v4 + # with: + # name: wheel-source + # path: ./src/runtime/python/dist/*.tar.gz - upload_pypi: - name: Upload to PyPI - needs: [build_wheels, build_sdist] - runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' && github.event_name == 'push' + # upload_pypi: + # name: Upload to PyPI + # needs: [build_wheels, build_sdist] + # runs-on: ubuntu-latest + # if: github.ref == 'refs/heads/master' && github.event_name == 'push' - steps: - - uses: actions/checkout@v4 + # steps: + # - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' + # - name: Set up Python + # uses: actions/setup-python@v5 + # with: + # python-version: '3.x' - - name: Install twine - run: pip install twine + # - name: Install twine + # run: pip install twine - - uses: actions/download-artifact@v4.1.7 - with: - pattern: wheel-* - merge-multiple: true - path: ./dist + # - uses: actions/download-artifact@v4.1.7 + # with: + # pattern: wheel-* + # merge-multiple: true + # path: ./dist - - name: Publish - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - twine upload --verbose --non-interactive --skip-existing dist/* \ No newline at end of file + # - name: Publish + # env: + # TWINE_USERNAME: __token__ + # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + # run: | + # twine upload --verbose --non-interactive --skip-existing dist/*