Skip to content

Commit 2c8a884

Browse files
committed
added missing steps to setup python for release table
1 parent cc751fc commit 2c8a884

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ jobs:
3434
steps:
3535
- uses: actions/checkout@v4
3636

37+
- name: Set up Python
38+
uses: actions/setup-python@v4
39+
with:
40+
python-version: '3.x' # Specify the version of Python to use
41+
42+
- name: Install dependencies
43+
run: python -m pip install --upgrade pip && pip install requests
44+
3745
- name: Run Python script
3846
run: |
3947
python .github/workflows/update_release_table.py ${{ github.ref_name }}

0 commit comments

Comments
 (0)