add pypa/gh-action-pypi-publish

This commit is contained in:
Kyle Altendorf 2024-03-12 20:27:02 -04:00
parent f9b2857dce
commit 13c697bd23
No known key found for this signature in database
1 changed files with 21 additions and 0 deletions

View File

@ -224,3 +224,24 @@ jobs:
name: wheel-${{ env.FILE_NAME }} name: wheel-${{ env.FILE_NAME }}
path: ./dist path: ./dist
if-no-files-found: error if-no-files-found: error
upload:
name: ${{ matrix.os.emoji }} 📦 Build ${{ matrix.arch.name }} ${{ matrix.python.major-dot-minor }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Download Results
uses: actions/download-artifact@v4
with:
merge-multiple: true
pattern: wheel-*
path: dist/
- name: Publish distribution to PyPI
# TODO: identify the desired condition
if: false
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
skip-existing: true