Skip to content

Try to fix some issues with readthedocs failing latex build. (#935) #23

Try to fix some issues with readthedocs failing latex build. (#935)

Try to fix some issues with readthedocs failing latex build. (#935) #23

Workflow file for this run

on:
push:
tags:
- "[0-9]+.[0-9]+*"
name: Release
jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: update pip
run: |
python -m pip install -U pip
- name: Create dist
run: |
pip install tox
tox -e makedist
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{secrets.PYPI_API_TOKEN}}