Skip to content

Commit 04fb927

Browse files
authored
Merge pull request #14 from dbsystel/workflow-release
Add workflow to publish a new pypi package upon tagging
2 parents 9bc6054 + d00404f commit 04fb927

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/publish.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# SPDX-FileCopyrightText: 2024 DB Systel GmbH
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
name: Python package
6+
on:
7+
push:
8+
tags:
9+
- "v*.*.*"
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Build and publish to PyPI
16+
uses: JRubics/[email protected]
17+
with:
18+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)