Skip to content

Commit 9e625df

Browse files
committed
Correct CURL download URLs for windows.
1 parent 3363838 commit 9e625df

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/install-curl/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ runs:
3434
id: windows-action
3535
shell: bash
3636
run: |
37-
# Download CURL 8.16.0 with OpenSSL for Windows (MSVC build)
38-
curl -L https://curl.se/windows/dl-8.16.0/curl-8.16.0-win64-msvc.zip -o curl.zip
37+
# Download CURL 8.16.0 with OpenSSL for Windows (MinGW build, compatible with MSVC)
38+
curl -L https://curl.se/windows/dl-8.16.0_6/curl-8.16.0_6-win64-mingw.zip -o curl.zip
3939
4040
# Extract to C:\curl-install
4141
7z x curl.zip -oC:\curl-install
4242
43-
# The archive extracts to a subdirectory named curl-8.16.0-win64-msvc
44-
echo "CURL_ROOT=C:\\curl-install\\curl-8.16.0-win64-msvc" >> $GITHUB_OUTPUT
43+
# The archive extracts to a subdirectory named curl-8.16.0_6-win64-mingw
44+
echo "CURL_ROOT=C:\\curl-install\\curl-8.16.0_6-win64-mingw" >> $GITHUB_OUTPUT
4545
4646
- name: Determine root
4747
id: determine-root

0 commit comments

Comments
 (0)