Add github actions release script

This commit is contained in:
Otto Winter 2020-07-14 19:43:19 +02:00
parent 8ed1d1ad12
commit b684977fdf
No known key found for this signature in database
GPG Key ID: 48ED2DDB96D7682C
1 changed files with 27 additions and 0 deletions

27
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Publish Release
on:
release:
types: [published]
jobs:
deploy-pypi:
name: Build and publish to PyPi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Set up python environment
run: |
pip3 install -e .
pip3 install setuptools wheel twine
- name: Build
run: python setup.py sdist bdist_wheel
- name: Upload
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload dist/*