Skip to content

Merge branch 'release/6.2.1' #5

Merge branch 'release/6.2.1'

Merge branch 'release/6.2.1' #5

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- name: Checkout commit and fetch tag history
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish package
env:
TWINE_USERNAME: ${{ secrets.PYPI_AZAVEA_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_AZAVEA_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*