Skip to content

Release v1.5.0

Release v1.5.0 #20

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@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Dependencies
run: |
sudo apt-get install pandoc
python -m pip install --upgrade pip
pip install pypandoc
pip install -e ".[dev,test]"
- name: Test Package
run: |
python -m unittest
- 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/