github-actions. trying to fix artifacts

This commit is contained in:
Martin Bubel 2024-01-13 14:39:54 +01:00
parent dd44638ea0
commit 96611b7099

View file

@ -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 }}