Skip to content

Commit

Permalink
Missing twine to check it (#35)
Browse files Browse the repository at this point in the history
* Missing twine to check it

* Typo
  • Loading branch information
castelao authored Jul 5, 2022
1 parent fd939f1 commit f064aef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Pyblish distributions to PyPI and TestPyPI
name: Publish distributions to PyPI and TestPyPI

on:
push:
branches: [ main ]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -36,7 +35,9 @@ jobs:
.
- name: Check distribution files
run: twine check dist/*
run: |
pip install twine
twine check dist/*
# - name: Publish distribution package to Test PyPI
# uses: pypa/gh-action-pypi-publish@master
Expand Down

0 comments on commit f064aef

Please sign in to comment.