diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index a43d042..6f5d5cb 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -30,11 +30,12 @@ jobs: python -m build - name: Upload distributions + # Make sure the artifact versions match uses: actions/upload-artifact@v4 with: # Name of the distribution (no idea why they don't make this clear) name: pywebpush - path: dist/ + path: dist/*.tar.gz pypi-publish: # Remember, matching strings need to be in single quotes. @@ -55,7 +56,8 @@ jobs: steps: - name: Retrieve release distributions - uses: actions/download-artifact@v8 + # Make sure the artifact versions match + uses: actions/download-artifact@v4 with: # Name of the distribution (no idea why they don't make this clear) name: pywebpush @@ -65,6 +67,6 @@ jobs: ls -aFl dist/ - name: Publish release distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages-dir: dist/ - verbose: true + #with: + # packages-dir: dist/ + # verbose: true