Skip to content

Commit 5a4067e

Browse files
committed
Fix twine command execution
1 parent bf864e9 commit 5a4067e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,11 @@ jobs:
1919
- name: Install gettext
2020
run: sudo apt-get install gettext -y
2121
- name: Install dependencies
22-
run: |
23-
python -m pip install --upgrade pip setuptools wheel twine
22+
run: python -m pip install --upgrade pip setuptools wheel twine
2423
- name: Build dist packages
2524
run: python setup.py sdist bdist_wheel
2625
- name: Upload packages
27-
run: twine upload dist/*
26+
run: python -m twine upload dist/*
2827
env:
2928
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
3029
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}

0 commit comments

Comments
 (0)