Deploy Workflow #41
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: Deploy Workflow | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
python-version: [2.7] | |
runs-on: ubuntu-latest | |
container: python:${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- run: python --version | |
- run: | | |
pip install -r requirements.txt | |
pip install -r extra.txt | |
if: matrix.python-version != '2.7' | |
- run: | | |
pip install -r requirements.py2.txt | |
pip install -r extra.py2.txt | |
if: matrix.python-version == '2.7' | |
- run: ADAPTER=tiny python setup.py test | |
- run: pip install twine wheel | |
- run: python setup.py sdist bdist_wheel | |
- run: python -m twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/* | |
env: | |
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |