Multidegeneracy and FCF improvements #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release to PyPI | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Tools | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine versioneer | |
- name: Package and Upload | |
env: | |
STACKMANAGER_VERSION: ${{ github.event.release.tag_name }} | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_APIKEY }} | |
run: | | |
python setup.py sdist bdist_wheel | |
twine upload dist/* |