Skip to content

Merge pull request #24 from calidae/7.2 #25

Merge pull request #24 from calidae/7.2

Merge pull request #24 from calidae/7.2 #25

Workflow file for this run

name: Publish on PyPI
on:
push:
tags: '*'
jobs:
pypi-publishing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install PyPA build
run: python3 -m pip install build
- name: Prepare distribuition
run: python3 -m build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TWINE_PASSWORD }}