Skip to content

Commit

Permalink
github-actions. trying to fix artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jan 13, 2024
1 parent dd44638 commit 96611b7
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}

0 comments on commit 96611b7

Please sign in to comment.