Skip to content

Commit

Permalink
Fix twine command execution
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Aug 28, 2019
1 parent bf864e9 commit 5a4067e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ jobs:
- name: Install gettext
run: sudo apt-get install gettext -y
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel twine
run: python -m pip install --upgrade pip setuptools wheel twine
- name: Build dist packages
run: python setup.py sdist bdist_wheel
- name: Upload packages
run: twine upload dist/*
run: python -m twine upload dist/*
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}

0 comments on commit 5a4067e

Please sign in to comment.