Skip to content

Publish Python distributions to TestPyPi and PyPi #14

Publish Python distributions to TestPyPi and PyPi

Publish Python distributions to TestPyPi and PyPi #14

Workflow file for this run

name: Publish Python distributions to TestPyPi and PyPi
on:
release:
types: [ published ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: |
sudo apt-get install pandoc
python -m pip install --upgrade pip
pip install pypandoc
pip install -r requirements.txt
- name: Test Package
run: |
python setup.py test
- name: Build Package
run: |
python setup.py bdist_wheel sdist
- name: Publish Package
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: ./dist/