diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 06868d0..6349865 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -64,14 +64,16 @@ jobs: name: all-files pattern: artifact-* - - uses: actions/download-artifact@v4 + - name: Download merged artifact + uses: actions/download-artifact@v4 with: # unpacks default artifact into dist/ # if `name: artifact` is omitted, the action will create extra parent dir name: all-files path: dist - - uses: pypa/gh-action-pypi-publish@v1.8.14 + - name: Publish wheels to PyPi + uses: pypa/gh-action-pypi-publish@v1.8.14 with: user: __token__ password: ${{ secrets.pypi_password }}