diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 524059ba..452b1b32 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -230,7 +230,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 - if: ${{ ( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }} + # if: ${{ ( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }} with: name: ${{ matrix.conf.os }}-${{ matrix.python-version }}-${{ matrix.conf.target-triple }}-${{ matrix.conf.target }} path: dist @@ -255,7 +255,7 @@ jobs: pypi-publish: name: Upload release to PyPI - if: startsWith(github.ref, 'refs/tags/') + # if: startsWith(github.ref, 'refs/tags/') strategy: fail-fast: false runs-on: ubuntu-latest @@ -272,15 +272,15 @@ jobs: merge-multiple: true - name: List artifacts run: ls -lhs - - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - skip-existing: true - packages-dir: ./ + # - name: Publish package distributions to PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # skip-existing: true + # packages-dir: ./ gh-publish: name: Publish artifacts to GH - if: startsWith(github.ref, 'refs/tags/') + # if: startsWith(github.ref, 'refs/tags/') permissions: contents: write needs: [build-test, build-sdist] @@ -292,7 +292,7 @@ jobs: merge-multiple: true - name: List artifacts run: ls -lhs - - name: Upload to GitHub - uses: softprops/action-gh-release@v2 - with: - files: ./* + # - name: Upload to GitHub + # uses: softprops/action-gh-release@v2 + # with: + # files: ./*