Skip to content

Remove unwanted logging #21

Remove unwanted logging

Remove unwanted logging #21

Workflow file for this run

name: Publish to PyPI
on:
- push
jobs:
publish-pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- name: Install dependencies
run: sudo apt-get install -y pandoc
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Build dist
run: python setup.py sdist
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}