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.
2 parents 854db9b + 027be9e commit 0e4e282Copy full SHA for 0e4e282
.github/workflows/publish.yml
@@ -0,0 +1,17 @@
1
+name: Publish to PyPI.org
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ pypi-release:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v3
11
+ with:
12
+ fetch-depth: 0
13
+ - run: python3 -m pip install --upgrade build && python3 -m build
14
+ - name: Publish package
15
+ uses: pypa/gh-action-pypi-publish@release/v1
16
17
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments