We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129121c commit a74e9e0Copy full SHA for a74e9e0
.github/workflows/publish.yml
@@ -0,0 +1,17 @@
1
+name: Build and publish python package
2
+
3
+on:
4
+ release:
5
+ types: [ published ]
6
7
+jobs:
8
+ publish-service-client-package:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ steps:
13
+ - name: Publish PyPi package
14
+ uses: code-specialist/pypi-poetry-publish@v1
15
+ with:
16
+ ACCESS_TOKEN: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
17
+ PUBLISH_REGISTRY_PASSWORD: ${{ secrets.PYPI_TOKEN }}
0 commit comments