diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf13a870..d98755d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,10 @@ jobs: echo "VERSION=$TAG_VERSION" >> $GITHUB_OUTPUT echo "Releasing version: $TAG_VERSION" + - name: Install package dependencies + run: | + pip install -e . + - name: Check version consistency run: | TAG_VERSION=${{ steps.get_version.outputs.VERSION }} diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index c7ddf623..02733de9 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -24,6 +24,10 @@ jobs: echo "VERSION=$TAG_VERSION" >> $GITHUB_OUTPUT echo "Testing with version: $TAG_VERSION" + - name: Install package dependencies + run: | + pip install -e . + - name: Check version consistency run: | TAG_VERSION=${{ steps.get_version.outputs.VERSION }}