Skip to content

make check for latex more robust (#74) #24

make check for latex more robust (#74)

make check for latex more robust (#74) #24

Workflow file for this run

name: publish
on:
push:
tags:
- 'v*'
jobs:
pypi:
name: "Publish to PyPI"
strategy:
matrix:
python-version: ["3.9"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: pip install --upgrade pip
- name: Install build tools
run: pip install --upgrade .[pub]
- name: Build dist
run: |
python setup.py sdist bdist_wheel
- name: Publish release ${{ github.ref }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}