Skip to content

[pre-commit.ci] pre-commit autoupdate (#588) #21

[pre-commit.ci] pre-commit autoupdate (#588)

[pre-commit.ci] pre-commit autoupdate (#588) #21

Workflow file for this run

name: Deployment
on:
push:
tags: [v*]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Build package
run: tox -e build-package
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TWINE_API_KEY }}
skip-existing: true
verify-metadata: true
verbose: true