Skip to content

Commit

Permalink
action: upgrade pip during local test
Browse files Browse the repository at this point in the history
Upgrade pip to latest during local test.
  • Loading branch information
alive4ever committed Feb 15, 2025
1 parent 574ddb4 commit d6b5166
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/generate_release_oldwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
python -m venv .venv
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser
.\.venv\Scripts\Activate.ps1
.\.venv\Scripts\pip.exe install -r requirements.txt
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -c "import server; from youtube import util; url = 'https://cloudflare.com/cdn-cgi/trace'; resp = util.fetch_url(url, report_text='Getting CF trace report'); print(resp.decode())" && deactivate
- name: Generating release
id: generating-release
Expand Down

0 comments on commit d6b5166

Please sign in to comment.