5
0

Adds the wheel package to the build install.

This commit is contained in:
Llewellyn van der Merwe 2023-11-14 09:39:28 +02:00
parent f9c7b0f349
commit c454316040
Signed by: Llewellyn
GPG Key ID: A9201372263741E7

View File

@ -49,6 +49,9 @@ jobs:
- name: Install Twine
run: python -m pip install twine
- name: Install Wheel
run: python -m pip install wheel
- name: Build Package
run: |
python setup.py sdist bdist_wheel
@ -63,4 +66,4 @@ jobs:
echo "password = ${{ secrets.GITEA_TOKEN }}" >> ~/.pypirc
- name: Push to Gitea
run: python3 -m twine upload --repository gitea dist/*
run: python3 -m twine upload --repository getbible dist/*