Skip to content

Commit

Permalink
Add github action to publish releases
Browse files Browse the repository at this point in the history
  • Loading branch information
crucialfelix committed Dec 6, 2023
1 parent dec6208 commit 748fd62
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build and publish python package

on:
release:
types: [published]

jobs:
publish-service-client-package:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.17
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 748fd62

Please sign in to comment.