Skip to content

release 22.0.0 (#162) #28

release 22.0.0 (#162)

release 22.0.0 (#162) #28

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
jobs:
deploy:
if: github.repository_owner == 'ofek'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: pip
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U build twine wheel
- name: Build package
run: |
python -m build
twine check --strict dist/*
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}