Skip to content

Use new PyPI trusted publisher management #66

Use new PyPI trusted publisher management

Use new PyPI trusted publisher management #66

Workflow file for this run

name: Deployment
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
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
python -m pip install tox
- name: Build package
run: tox -e build-package
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
verify-metadata: true
verbose: true