Skip to content

chore: switch to pyproject.toml based build #1891

chore: switch to pyproject.toml based build

chore: switch to pyproject.toml based build #1891

Workflow file for this run

# Copyright © Michal Čihař <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
name: Distribution
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: pip
- name: build
run: pipx build
- name: twine
run: pipx twine check dist/*
- name: Publish package
if: ${{ github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}