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 97eda33 commit 7e2882aCopy full SHA for 7e2882a
.github/workflows/pypi-publish.yml
@@ -2,7 +2,7 @@ name: Publish PyPi Package
2
3
on:
4
release:
5
- types: [published]
+ types: [created]
6
7
permissions:
8
contents: read
@@ -24,6 +24,8 @@ jobs:
24
python -m pip install --upgrade pip
25
python -m pip install --upgrade build
26
python -m pip install --upgrade twine
27
- cd /PyPI/Package
+ cd PyPI/Package/src/webui
28
+ sh bootstrap.sh
29
+ cd ../..
30
python -m build
31
python -m twine upload --repository pypi dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
0 commit comments