Skip to content

Commit 19d3a70

Browse files
authored
Install Pypi upload dependencies (#55)
Signed-off-by: Aravinda Vishwanathapura <[email protected]>
1 parent 9954700 commit 19d3a70

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/on-release-tag.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121
uses: actions/setup-python@v1
2222
with:
2323
python-version: '3.x'
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install setuptools wheel twine
2428
- name: Publish to Pypi
2529
run: |
26-
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;
2731
TWINE_PASSWORD=${{ secrets.TWINE_PASSWORD }} twine upload --username aravindavk dist/*

0 commit comments

Comments
 (0)