Skip to content

Bump version: 9.25.7 → 9.25.8 #76

Bump version: 9.25.7 → 9.25.8

Bump version: 9.25.7 → 9.25.8 #76

name: CI-Publish-To-PyPI
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6]
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 }}