From 2350f5fb1eed4abb777f8e98db9122ded7ed076f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Tue, 5 Dec 2023 18:58:13 +0000 Subject: [PATCH] Fix wheel upload: install twine --- .github/workflows/python-distributions.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/python-distributions.yml b/.github/workflows/python-distributions.yml index a19fee1c5..9a87d1ae8 100644 --- a/.github/workflows/python-distributions.yml +++ b/.github/workflows/python-distributions.yml @@ -68,6 +68,10 @@ jobs: - build-sdist if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/dulwich-') steps: + - name: Install twine + run: | + python -m pip install --upgrade pip + pip install twine - name: Download distributions uses: actions/download-artifact@v2 with: