Skip to content

Bump version: 9.25.9 → 9.25.10 #78

Bump version: 9.25.9 → 9.25.10

Bump version: 9.25.9 → 9.25.10 #78

name: CI-Publish-To-PyPI
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Prepare
run: |
tox -e doc_man,release
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}