Skip to content

Commit

Permalink
Merge pull request #7605 from Tribler/fix/windows_dependencies
Browse files Browse the repository at this point in the history
Use curl for the windows_dependencies action
  • Loading branch information
drew2a committed Sep 25, 2023
2 parents 00e7982 + 9f4b3d6 commit af28794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/windows_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ runs:
RELEASE_FOLDER: .\libsodium\x64\Release
shell: cmd
run: |
C:\msys64\usr\bin\wget.exe -q https://download.libsodium.org/libsodium/releases/libsodium-${{inputs.libsodium-version}}-msvc.zip
7z x libsodium-${{inputs.libsodium-version}}-msvc.zip
curl -o libsodium.zip https://download.libsodium.org/libsodium/releases/libsodium-${{inputs.libsodium-version}}-msvc.zip
7z x libsodium.zip
dir %RELEASE_FOLDER% /ad /b /o-n > latest_release_file
set /p latest_release= < latest_release_file
echo Latest release: %latest_release%
Expand Down

0 comments on commit af28794

Please sign in to comment.