Skip to content

Merge pull request #102 from ken-lauer/fix_unbound_variable #115

Merge pull request #102 from ken-lauer/fix_unbound_variable

Merge pull request #102 from ken-lauer/fix_unbound_variable #115

Workflow file for this run

name: Publish Python distributions to PyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Update pip
run: >-
python -m pip install --upgrade pip
- name: Install pypa/build
run: >-
python -m pip install --upgrade build
- name: Build a source tarball
run: >-
python -m build --sdist --outdir dist/ .
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}