File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ jobs:
112112 GITHUB_REF_NAME : snapshot
113113 run : |
114114 echo "📝 Generating plugin repository YAML file..."
115+ python3 -m venv venv
116+ source venv/bin/activate
117+ python3 -m pip install --upgrade pip
118+ pip install PyYAML requests
115119 python3 .github/workflows/generate_plugin_repo.py
116120 echo "✅ Plugin repository YAML generated"
117121
Original file line number Diff line number Diff line change 7070
7171 - name : Install Python dependencies
7272 run : |
73- python -m pip install --upgrade pip
74- pip install PyYAML
73+ python3 -m venv venv
74+ source venv/bin/activate
75+ python3 -m pip install --upgrade pip
76+ pip install PyYAML requests
7577
7678 - name : Download all build artifacts
7779 uses : actions/download-artifact@v3
You can’t perform that action at this time.
0 commit comments