From f8b979b08a6434192c3edd7c3b35c9a1f9e205a1 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Tue, 1 Aug 2023 11:27:53 +0100 Subject: [PATCH] fix release workflow --- .github/workflows/pythonpublish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 0d4f93c..6b536a4 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -15,7 +15,7 @@ jobs: # install build package and build dist - name: Build distribution run: >- - python3 -m pip install build --user + python3 -m pip install build --user && python3 -m build --sdist --wheel --outdir dist/ # retrieve your distributions here - name: Publish package distributions to PyPI