Skip to content

v0.2.1 - User docs

v0.2.1 - User docs #17

Workflow file for this run

name: Build and publish Python wheel and sdist
on:
workflow_dispatch:
release:
types:
- published
jobs:
build:
name: Build source distribution and wheel
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python and dependencies
uses: ./.github/actions/python-deps
with:
pythonVersion: 3.11
- name: Build and check
run: |
python -m build
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
- name: Publish documentation
uses: ./.github/actions/mike-docs
with:
version: ${{ github.ref_name }}
alias: latest
push: true
publish_pypi:
name: Publish wheels to PyPI
needs: [ build ]
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: dist
path: dist
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true # tolerate release package file duplicates
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1