From 42701f32fed5e538e7147b60519e7acf5ba8dd18 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Wed, 10 Jan 2024 16:46:46 -0500 Subject: [PATCH] Build the source distribution bundle to also upload to PyPI This has been broken since 20.0.1. --- .github/workflows/promote.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 81a7878d6e80..8251ab1f9f6b 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -66,7 +66,7 @@ jobs: - name: Build awxkit and upload to pypi run: | git reset --hard - cd awxkit && python3 setup.py bdist_wheel + cd awxkit && python3 setup.py sdist bdist_wheel twine upload \ -r ${{ env.pypi_repo }} \ -u ${{ secrets.PYPI_USERNAME }} \