From a3d8ad1e40c654bba8b04a65926f7cf28c6707fc Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Fri, 5 Mar 2021 22:35:50 -0700 Subject: github: explicitly install twine before uploading --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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/* -- cgit v1.2.3-65-gdbad