diff options
author | 2021-03-05 22:37:57 -0700 | |
---|---|---|
committer | 2021-03-05 22:37:57 -0700 | |
commit | 8c0349fd6b3d665f93bb567a54d6c324703bc30a (patch) | |
tree | e2fcfb479f636bd54fd92e0164407524d8ec7469 /.github/workflows | |
parent | requirements: drop unneeded build.txt (diff) | |
download | pkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.tar.gz pkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.tar.bz2 pkgdev-8c0349fd6b3d665f93bb567a54d6c324703bc30a.zip |
github: explicitly install twine before uploading
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 4 |
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/* |