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 9954700 commit 19d3a70Copy full SHA for 19d3a70
.github/workflows/on-release-tag.yml
@@ -21,7 +21,11 @@ jobs:
21
uses: actions/setup-python@v1
22
with:
23
python-version: '3.x'
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install setuptools wheel twine
28
- name: Publish to Pypi
29
run: |
- rm -rf dist; VERSION=${{ env.glustercli_version }} python3 setup.py sdist;
30
+ rm -rf dist; VERSION=${{ env.glustercli_version }} python3 setup.py sdist bdist_wheel;
31
TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} twine upload --username aravindavk dist/*
0 commit comments