Skip to content

Commit

Permalink
Fix steps ordering in publish-python-package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverMendel committed Oct 17, 2023
1 parent 0e0300c commit 5c79dd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
- name: Build project
run: python3 -m build

- name: Remove deprecated egg file
run: rm -f dist/*.egg

- name: Check build
run: python3 -m twine check dist/*

Expand All @@ -42,5 +39,8 @@ jobs:
echo actual=\"$actual\"
[[ $expected == $actual ]]
- name: Remove deprecated egg file
run: rm -f dist/*.egg

- name: Publish project
run: python3 -m twine upload dist/* -u ${{ secrets.PYPY_USERNAME }} -p ${{ secrets.PYPY_PASSWORD }} --non-interactive

0 comments on commit 5c79dd8

Please sign in to comment.