
Draft releases don't trigger the workflows (that's good!) but since they only Commit history before merge: * fix: run pypi upload from published draft releases * Fix broken task list markup in PR template * change docker workflow to build on release publish Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com>
32 lines
668 B
YAML
32 lines
668 B
YAML
name: pypi_upload
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
name: PyPI Upload
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
|
|
- name: Install latest pip, setuptools, twine + wheel
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools twine wheel
|
|
|
|
- name: Build wheels
|
|
run: |
|
|
python setup.py bdist_wheel
|
|
python setup.py sdist
|
|
|
|
- name: Upload to PyPI via Twine
|
|
env:
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
run: |
|
|
twine upload --verbose -u '__token__' dist/*
|