From e950cd856c12da245c4a1e012fbe0659d05e8105 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 23 Dec 2020 14:19:39 -0600 Subject: [PATCH] Fix GitHub Actions Deploy workflow command to create source distribution --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 80a2eb8..f0c5f70 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,6 +22,6 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python setup.py dist bdist_wheel + python setup.py sdist bdist_wheel twine upload dist/* -- 2.25.1