Skip to content

Merge "Fix: On error continue processing workflows" into main #26

Merge "Fix: On error continue processing workflows" into main

Merge "Fix: On error continue processing workflows" into main #26

Workflow file for this run

---
name: PyPI release
# yamllint disable-line rule:truthy
on: push
jobs:
publish:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Build package distribution files
run: >-
pipx run tox -e clean,build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1