1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00

fix package script usage

This commit is contained in:
Dmitrii Orlov 2022-05-01 22:36:06 +02:00
parent 6502f031d4
commit c36fc51da2
No known key found for this signature in database
GPG Key ID: A5C683DE49E900B5
2 changed files with 3 additions and 3 deletions

@ -135,7 +135,7 @@ jobs:
- name: Build distribution _wheel_.
run: |
/bin/package.sh
./bin/package.sh
- name: Publish distribution 📦 to PyPI.
uses: pypa/gh-action-pypi-publish@master

@ -5,5 +5,5 @@
my_dir=`dirname "$0"`
cd $my_dir/..
rm -r build/* dist/*
python setup.py bdist_wheel sdist
rm -r build/* dist/* || echo "no build/* or dist/* folder is found"
python3 setup.py bdist_wheel sdist