Skip to content

Bump version: 10.1.1 → 10.1.2 #122

Bump version: 10.1.1 → 10.1.2

Bump version: 10.1.1 → 10.1.2 #122

name: CI-Publish-To-PyPI
on:
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.10"]
environment:
name: pypi
url: https://pypi.org/p/kiwi
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v4
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