Skip to content

3.1.0 - HCS getters, annotation ID option in getters, list of values in map-annotations, README instructions improved #27

3.1.0 - HCS getters, annotation ID option in getters, list of values in map-annotations, README instructions improved

3.1.0 - HCS getters, annotation ID option in getters, list of values in map-annotations, README instructions improved #27

Workflow file for this run

name: Release to PyPI
on:
release:
types: [released]
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
- name: Package and Upload
env:
VERSION: ${{ github.event.release.tag_name }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/* --verbose