Add github action to publish to PyPI (#370)

This commit is contained in:
Martin Hjelmare 2022-02-15 19:49:53 +01:00 committed by GitHub
parent 0f0f3e0df4
commit b6356a00bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
.github/workflows/publish.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Publish releases to PyPI
on:
release:
types: [published, prereleased]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.4.0
- name: Set up Python 3.6
uses: actions/setup-python@v2.3.2
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Publish release to PyPI
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}