Skip to content

Commit e20dad6

Browse files
committed
Fix GitHub Action steps ordering in publish-python-package.yml
1 parent 4f3c743 commit e20dad6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
- name: Build project
2626
run: python3 -m build
2727

28-
- name: Remove deprecated egg file
29-
run: rm -f dist/*.egg
30-
3128
- name: Check build
3229
run: python3 -m twine check dist/*
3330

@@ -42,5 +39,8 @@ jobs:
4239
echo actual=\"$actual\"
4340
[[ $expected == $actual ]]
4441
42+
- name: Remove deprecated egg file
43+
run: rm -f dist/*.egg
44+
4545
- name: Publish project
4646
run: python3 -m twine upload dist/* -u ${{ secrets.PYPY_USERNAME }} -p ${{ secrets.PYPY_PASSWORD }} --non-interactive

0 commit comments

Comments
 (0)