aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-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 27c03fbf4..67be0902b 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/*