Push to PyPI #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Push to PyPI" | |
on: | |
workflow_dispatch: | |
jobs: | |
build-wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
env: | |
CIBW_SKIP: "cp38-* cp39-* pp*" | |
CIBW_ARCHS_LINUX: "x86_64" | |
CIBW_ARCHS_WINDOWS: "AMD64" | |
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: actions/setup-python@v5 | |
- name: Build wheels | |
uses: pypa/[email protected] | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: vhs-decode-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl | |
if-no-files-found: error | |
create-sdist: | |
name: Create source distribution | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Create the sdist | |
run: | | |
pipx run build --sdist | |
- name: Store the sdist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vhs-decode-sdist | |
path: dist/*.tar.gz | |
if-no-files-found: error | |
publish-to-pypi: | |
name: Publish to PyPI | |
runs-on: ubuntu-20.04 | |
needs: | |
- build-wheels | |
- create-sdist | |
environment: | |
name: pypi | |
url: https://pypi.org/p/vhs-decode | |
permissions: | |
id-token: write # IMPORTANT: mandatory for trusted publishing | |
steps: | |
- name: Download all the artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: vhs-decode-* | |
path: dist | |
merge-multiple: true | |
- name: Publish packages to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |