diff --git a/.github/workflows/CI-python.yml b/.github/workflows/CI-python.yml index dbf2bfce..b9638ff0 100644 --- a/.github/workflows/CI-python.yml +++ b/.github/workflows/CI-python.yml @@ -320,12 +320,11 @@ jobs: venv/bin/python -c 'import cramjam' || venv/bin/cramjam-cli --help - name: Upload wheels - uses: actions/upload-artifact@v4 - if: ${{ ( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }} + uses: actions/upload-artifact@v3 + # if: ${{ ( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }} with: name: dist path: dist - overwrite: true build-sdist: name: Build sdists @@ -342,14 +341,14 @@ jobs: - name: Build sdist cramjam-cli run: python -m build --sdist cramjam-cli/ -o ./dist - name: Upload sdists - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: dist path: dist pypi-publish: name: Upload ${{ matrix.package }} release to PyPI - if: startsWith(github.ref, 'refs/tags/') + # if: startsWith(github.ref, 'refs/tags/') strategy: fail-fast: false matrix: @@ -381,8 +380,8 @@ jobs: ls -l - - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - skip-existing: true - packages-dir: artifacts-${{ matrix.package }}/ + # - name: Publish package distributions to PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # skip-existing: true + # packages-dir: artifacts-${{ matrix.package }}/