Skip to content

Prepare release 1.13.0 #1084

Prepare release 1.13.0

Prepare release 1.13.0 #1084

Workflow file for this run

---
name: Release
on: push
jobs:
pypi:
name: Build and publish to PyPI
if: startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install "build" package
run: |
python -m pip install build
- name: Build sdist and wheel
run: |
python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@v1.1.0
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}