Skip to content

Commit 260d735

Browse files
committed
Generate plugin repo YAML in CI
1 parent 8eea8b4 commit 260d735

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build-and-snapshot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ jobs:
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

0 commit comments

Comments
 (0)