Skip to content

v0.0.7

v0.0.7 #3

Workflow file for this run

---
name: Deploy Release
on:
release:
types: [released]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install wheel
- name: Build distribution
run: python setup.py sdist bdist_wheel
- name: Publish package to PyPi
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}