Skip to content

Merge pull request #588 from ianpye/bugfix/lookup-flag #266

Merge pull request #588 from ianpye/bugfix/lookup-flag

Merge pull request #588 from ianpye/bugfix/lookup-flag #266

Workflow file for this run

name: publish
on:
release:
types:
- published
push:
branches: [master, main]
jobs:
packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: build
run: |
python -m pip install wheel twine build
python -m build
- name: Check files
run: |
ls dist
shell: bash
- name: Test wheels
run: |
python -m twine check dist/*
shell: bash
- name: Publish a Python distribution to PyPI
if: ${{ github.event_name == 'release' }}
uses: pypa/gh-action-pypi-publish@v1.8.11
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}