From c454316040f500e10d65e178d166b3bd13d1daa3 Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Tue, 14 Nov 2023 09:39:28 +0200 Subject: [PATCH] Adds the wheel package to the build install. --- .github/workflows/deploy-gitea-package.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-gitea-package.yml b/.github/workflows/deploy-gitea-package.yml index 0ea697e..991c7f1 100644 --- a/.github/workflows/deploy-gitea-package.yml +++ b/.github/workflows/deploy-gitea-package.yml @@ -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/* \ No newline at end of file + run: python3 -m twine upload --repository getbible dist/* \ No newline at end of file