Merge pull request #71 from lkearney-arista/boolean-values #5
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 on PyPi | |
on: | |
workflow_dispatch: # Allows this workflow to be manually triggered | |
inputs: | |
twineRepo: # User input can override default pypi repo, e.g. using 'testpypi' | |
description: 'Target Twine Repository for Release' | |
required: true | |
default: 'pypi' | |
push: | |
tags: | |
- '*' # Trigger when any tag is pushed | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Choose Twine Repository | |
run: | | |
if [ -z "${{ github.event.inputs.twineRepo }}" ]; then | |
echo TWINE_REPO=pypi >> $GITHUB_ENV | |
else | |
echo TWINE_REPO="${{ github.event.inputs.twineRepo }}" >> $GITHUB_ENV | |
fi | |
- name: Build and publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
python setup.py sdist bdist_wheel | |
twine upload --repository "${{ env.TWINE_REPO }}" dist/* |