Skip to content

Commit

Permalink
Rename libcurl to curl
Browse files Browse the repository at this point in the history
  • Loading branch information
umireon committed Apr 21, 2024
1 parent 1797009 commit 4ec9e93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: "Upload artifacts"
uses: "actions/upload-artifact@v4"
with:
name: "libcurl-macos-${{ matrix.config }}"
name: "curl-macos-${{ matrix.config }}"
path: "release/*.tar.gz"

BuildWindows:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: "Upload artifacts"
uses: "actions/upload-artifact@v4"
with:
name: "opencv-windows-${{ matrix.config }}"
name: "curl-windows-${{ matrix.config }}"
path: "release/*.zip"

Release:
Expand Down
2 changes: 1 addition & 1 deletion Build-Windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ cmake "$CurlDirectory" -B "build_$Configuration" `

cmake --build "build_$Configuration" --config "$Configuration"
cmake --install "build_$Configuration" --config "$Configuration" --prefix "release/$Configuration"
Compress-Archive "release\$Configuration\*" "release\libcurl-windows-$Version-$Configuration.zip" -Verbose
Compress-Archive "release\$Configuration\*" "release\curl-windows-$Version-$Configuration.zip" -Verbose
2 changes: 1 addition & 1 deletion build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ cmake "$CURL_DIR" -B "build_$CONFIG" \

cmake --build "build_$CONFIG"
cmake --install "build_$CONFIG" --prefix "release/$CONFIG"
tar -C "release/$CONFIG" -cvf "release/libcurl-macos-$VERSION-$CONFIG.tar.gz" .
tar -C "release/$CONFIG" -cvf "release/curl-macos-$VERSION-$CONFIG.tar.gz" .

0 comments on commit 4ec9e93

Please sign in to comment.