We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72009cb commit 5700c02Copy full SHA for 5700c02
1 file changed
.github/workflows/publish.yaml
@@ -0,0 +1,19 @@
1
+name: release/publish
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
7
+jobs:
8
+ pypi:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v3
13
+ with:
14
+ fetch-depth: 0
15
+ - run: python3 -m pip install --upgrade build && python3 -m build
16
+ - name: Publish package
17
+ uses: pypa/gh-action-pypi-publish@release/v1
18
19
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments