Some checks failed
Test suites / test-os-python-matrix (ubuntu-22.04, 3.10) (pull_request) Failing after 30s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.12) (pull_request) Failing after 31s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.11) (pull_request) Failing after 34s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.13) (pull_request) Failing after 31s
Test suites / test-build-install (pull_request) Failing after 29s
Test suites / pylint (pull_request) Failing after 32s
Test suites / formatting (pull_request) Failing after 32s
Test suites / mypy (pull_request) Failing after 31s
Test suites / reuse (pull_request) Successful in 7s
19 lines
406 B
YAML
19 lines
406 B
YAML
# SPDX-FileCopyrightText: 2025 DB Systel GmbH
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: Publish release on PyPI
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build and publish to PyPI
|
|
uses: https://github.com/JRubics/poetry-publish@v2.1
|
|
with:
|
|
pypi_token: ${{ secrets.PYPI_TOKEN }}
|