Skip to content

Commit

Permalink
Merge pull request #14 from dbsystel/workflow-release
Browse files Browse the repository at this point in the history
Add workflow to publish a new pypi package upon tagging
  • Loading branch information
mxmehl authored Feb 6, 2024
2 parents 9bc6054 + d00404f commit 04fb927
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: 2024 DB Systel GmbH
#
# SPDX-License-Identifier: Apache-2.0

name: Python package
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and publish to PyPI
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 04fb927

Please sign in to comment.