diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index eb3210d..bfb559e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -46,9 +46,10 @@ jobs: python -c "import lpath.lpath" && echo "All done with import tests!" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.whl + overwrite: true build_sdist: name: Build source distribution @@ -79,9 +80,10 @@ jobs: python -c "import lpath.lpath" && echo "All done with import tests!" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz + overwrite: true upload_pypi: needs: [build_wheels, build_sdist] @@ -99,6 +101,7 @@ jobs: # if `name: artifact` is omitted, the action will create extra parent dir name: artifact path: dist + merge-multiple: true - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1