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 6f62b70 commit 5ba68e8Copy full SHA for 5ba68e8
.github/workflows/publish.yaml
@@ -24,15 +24,18 @@ jobs:
24
python -m pip install --upgrade pip
25
pip install setuptools wheel twine
26
27
+ - name: Build
28
+ run: |
29
+ python setup.py sdist bdist_wheel
30
+
31
- name: Update help docs
32
run: |
33
python setup.py install
34
python ./tools/api_reference_generator.py ${{ secrets.HELPDOCS_API_KEY }}
35
- - name: Build and publish
36
+ - name: Publish
37
env:
38
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
39
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
40
- python setup.py sdist bdist_wheel
41
twine upload dist/*
0 commit comments