Skip to content

0.5.11

0.5.11 #81

Workflow file for this run

name: PyPi Release
on:
push:
tags:
- 'v*'
jobs:
pypi:
name: Release 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: Install publishing dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
run: |
python setup.py sdist bdist_wheel
twine upload --skip-existing -u __token__ -p ${{ secrets.PYPI_TOKEN_MOHOU }} dist/*