From 1882b0b7aa96dceec8c3d3321bb58aa9591859f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Gr=C3=B3dek?= Date: Fri, 3 Nov 2023 14:43:19 +0100 Subject: [PATCH] Install build in venv during release --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf1edf9..fd048de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,9 +21,6 @@ jobs: - name: Setup venv run: . ./setup_dev_env.sh - - name: Install build - run: python -m pip install -U build - - name: Bump version as release run: | source venv/bin/activate @@ -32,6 +29,7 @@ jobs: - name: Build package run: | source venv/bin/activate + python -m pip install -U build python -m build - name: Publish package distributions to PyPI