Skip to content

Commit 748fd62

Browse files
committed
Add github action to publish releases
1 parent dec6208 commit 748fd62

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/publish.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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: Build and publish to pypi
14+
uses: JRubics/[email protected]
15+
with:
16+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)