diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 3d35399..17638cb 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -15,8 +15,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.x" + - name: Install packaging libraries + run: | + python -m pip install wheel - name: Build a binary wheel and a source tarball - run: python setup.py sdist bdist_wheel + run: | + python setup.py sdist bdist_wheel - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: diff --git a/.github/workflows/tag-testpypi.yml b/.github/workflows/tag-testpypi.yml index 7c8422e..2972f65 100644 --- a/.github/workflows/tag-testpypi.yml +++ b/.github/workflows/tag-testpypi.yml @@ -15,8 +15,12 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.x" + - name: Install packaging libraries + run: | + python -m pip install wheel - name: Build a binary wheel and a source tarball - run: python setup.py sdist bdist_wheel + run: | + python setup.py sdist bdist_wheel - name: Publish distribution 📦 to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: