Skip to content

Commit

Permalink
Merge pull request #70 from alt-art/main
Browse files Browse the repository at this point in the history
Use curl instead of wget on release actions
  • Loading branch information
alt-art authored Feb 9, 2024
2 parents 1f184a5 + 7bf5c3a commit f1edddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:

- name: Prepare python zip
run: |
wget "https://www.python.org/ftp/python/3.11.7/python-3.11.7-embed-amd64.zip" -O python.zip
curl -L "https://www.python.org/ftp/python/3.11.7/python-3.11.7-embed-amd64.zip" -o python.zip
mkdir building
unzip python.zip -d building/python
wget "https://bootstrap.pypa.io/get-pip.py" -O building/python/get-pip.py
curl -L "https://bootstrap.pypa.io/get-pip.py" -o building/python/get-pip.py
cd building/python
./python.exe get-pip.py
echo "import site" >> ./python311._pth
Expand Down

0 comments on commit f1edddd

Please sign in to comment.