fix: Install dependencies before version check in workflows

This commit is contained in:
UncleCode
2025-07-24 21:01:36 +08:00
parent 0c31e91b53
commit 66a979ad11
2 changed files with 8 additions and 0 deletions

View File

@@ -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 }}

View File

@@ -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 }}