aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2021-03-05 22:37:57 -0700
committerTim Harder <radhermit@gmail.com>2021-03-05 22:37:57 -0700
commit8c0349fd6b3d665f93bb567a54d6c324703bc30a (patch)
treee2fcfb479f636bd54fd92e0164407524d8ec7469 /.github
parentrequirements: drop unneeded build.txt (diff)
downloadpkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.tar.gz
pkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.tar.bz2
pkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.zip
github: explicitly install twine before uploading
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 27c03fb..67be090 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -51,4 +51,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
# only upload files for tagged releases
if: startsWith(github.ref, 'refs/tags/')
- run: twine upload dist/*
+ run: |
+ pip install twine
+ twine upload dist/*