From d40188bfcf88d3e6ed5bb9e7f3152e7c158f1fb4 Mon Sep 17 00:00:00 2001 From: Dan Meliza Date: Wed, 26 Jun 2024 22:18:19 -0400 Subject: [PATCH] fix yaml --- .github/workflows/build_wheels.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 }}