From 7a2f6cf91a5563956a8eefddf6c73dd885622409 Mon Sep 17 00:00:00 2001 From: Miles Granger Date: Fri, 6 Sep 2024 13:31:22 +0200 Subject: [PATCH] DROP COMMIT: check it works --- .github/workflows/CI.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8ba2c96d..5a0dac63 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -254,7 +254,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: dist-${{ matrix.conf.os }}-${{ matrix.python-version }}-${{ matrix.conf.target-triple }}-${{ matrix.conf.target }} path: dist @@ -279,7 +279,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 @@ -293,15 +293,15 @@ jobs: - uses: actions/download-artifact@v4 - 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] @@ -310,7 +310,7 @@ jobs: - uses: actions/download-artifact@v4 - 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: ./*