Fix Release workflow - use requirements.txt and correct MCP path

- Changed from manual pip install to using requirements.txt
- Fixed mcp/requirements.txt -> skill_seeker_mcp/requirements.txt
- This ensures all dependencies (including httpx) are installed

Fixes the v2.0.0 tag Release workflow failure
This commit is contained in:
yusyus
2025-10-26 17:48:23 +03:00
parent 27407a59b9
commit 1bf53423dc

View File

@@ -23,9 +23,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests beautifulsoup4
pip install pytest
if [ -f mcp/requirements.txt ]; then pip install -r mcp/requirements.txt; fi
pip install -r requirements.txt
if [ -f skill_seeker_mcp/requirements.txt ]; then pip install -r skill_seeker_mcp/requirements.txt; fi
- name: Run tests
run: |