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 bdf59fb commit ad51873Copy full SHA for ad51873
.github/workflows/release-pypi.yml
@@ -15,7 +15,16 @@ jobs:
15
uses: actions/setup-python@v2
16
with:
17
python-version: 3.11.x
18
+ - name: install twine
19
+ run: |
20
+ python -m pip install --upgrade pip;
21
+ pip install twine;
22
+ pip install build;
23
+
24
- name: Upload to PyPI
25
env:
26
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
- run: cd guardrails-api-client; python setup.py sdist upload
27
28
+ cd guardrails-api-client;
29
+ python -m build;
30
+ twine upload dist/* -u __token__ -p $PYPI_PASSWORD;
0 commit comments