Skip to content

Commit

Permalink
Fix missing twine dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed May 5, 2022
1 parent 1734652 commit 17e951c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,16 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')

steps:
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install requirements
run: |
python -m pip install -U pip setuptools wheel
python -m pip install -U twine
- name: Retrieve artifact from Python build
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 17e951c

Please sign in to comment.