Build wheels, optionally deploy to PyPI #12
Workflow file for this run
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: Build wheels, optionally deploy to PyPI | |
on: | |
workflow_dispatch: | |
inputs: | |
confirm_ref: | |
description: "Confirm chosen branch name to deploy to PyPI (optional):" | |
default: "" | |
override_version: | |
description: "Override version number (optional):" | |
default: "" | |
jobs: | |
build: | |
name: Build distribution π¦ | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install cibuildwheel | |
run: >- | |
python3 -m | |
pip install | |
cibuildwheel | |
--user | |
- name: Build a binary wheel and a source tarball | |
run: python3 -m cibuildwheel --output-dir dist | |
- name: Store the distribution packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
publish-to-pypi: | |
name: Publish Python π distribution π¦ to PyPI | |
if: ${{ github.event.inputs.confirm_ref != '' && github.event.inputs.confirm_ref != 'test' }} | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/qutip-qoc | |
permissions: | |
id-token: write | |
steps: | |
- name: Download all the dists | |
uses: actions/download-artifact@v3 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
- name: Publish distribution π¦ to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |