From 96611b7099dfddf756fd4687ccf1e5bd54f3d090 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sat, 13 Jan 2024 14:39:54 +0100 Subject: [PATCH] github-actions. trying to fix artifacts --- .github/workflows/deploy.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 772b0ddc7..d73437b84 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -141,6 +141,13 @@ jobs: pip install --upgrade pip pip install twine + - name: Download build artifacts + uses: actions/download-artifact@v4 + with: + path: wheelhouse + name: wheelhouse-artifacts + merge-multiple: true + - name: Download build artifacts uses: actions/download-artifact@v4 with: @@ -150,8 +157,8 @@ jobs: - name: Inspect wheelhouse files run: ls -R wheelhouse - - name: Upload to PyPI using twine - run: twine upload --skip-existing wheelhouse/* - env: - TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} - TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} + # - name: Upload to PyPI using twine + # run: twine upload --skip-existing wheelhouse/* + # env: + # TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + # TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}