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 4504c10 commit 4315f24Copy full SHA for 4315f24
.github/workflows/release_publish.yml
@@ -0,0 +1,21 @@
1
+name: release_publish
2
+on:
3
+ # workflow_dispatch:
4
+ release:
5
+ types: [published]
6
+jobs:
7
+ pypi_publish:
8
+ name: Deploy to pypi
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Check out repo
12
+ uses: actions/checkout@v2
13
+
14
+ - name: Build
15
+ run: python setup.py sdist bdist_wheel
16
17
+ - name: Publish to Pypi
18
+ uses: pypa/gh-action-pypi-publish@release/v1
19
+ with:
20
+ user: __token__
21
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments