Adds pypi Github action

This commit is contained in:
Michael 2020-08-16 11:10:25 -05:00
parent 73d26c502b
commit 11e34167d2

6
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,6 @@
- name: Publish package to Pypi
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}