From 79ec493c79969e041916455b3476f28345d8ea32 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 6 Jul 2022 19:51:38 +0300 Subject: [PATCH] Deployment: Build Python source tarball --- .github/workflows/deployment.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index d7035d5a..4c74a8a4 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -35,6 +35,9 @@ jobs: run: | tox -e testcore + - name: Build Python source tarball + run: python setup.py sdist + - name: Publish package to PyPI if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1