Browse Source

Merge pull request #1241 from jelmer/twine

Install twine when uploading to pypi
Jelmer Vernooij 1 year ago
parent
commit
d3fa892400
1 changed files with 4 additions and 0 deletions
  1. 4 0
      .github/workflows/python-distributions.yml

+ 4 - 0
.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: