Skip to content

Commit

Permalink
fix: "curl: (43) A libcurl function was given a bad argument"
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Jul 19, 2024
1 parent 36df7e8 commit dc90a9a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,20 @@ runs:
app_source_bin='yq_windows_amd64.exe'
;;
esac
echo "app_home: $app_home"
echo "app_source_bin: $app_source_bin"
echo "app_target_bin: $app_target_bin"
function get_latest_version() {
(set -x; curl -sSfL --max-time 5 -o /dev/null -w '%{url_effective}' $APP_REPO_ROOT/releases/latest | grep -o '[^/]*$' | cut -c2-)
# currently broken because of https://github.com/curl/curl/issues/13845
# (set -x; curl -sSfL --max-time 5 -o /dev/null -w '%{url_effective}' $APP_REPO_ROOT/releases/latest | grep -o '[^/]*$' | cut -c2-)
(set -x; wget --spider --max-redirect=0 --timeout=5 --header="Accept: */*" https://github.com/mikefarah/yq/releases/latest 2>&1 | grep "Location:" | awk '{print $2}' | grep -o '[^/]*$' | cut -c2-)
}
app_downloaded=false
function download_app() {
app_download_url="$APP_REPO_ROOT/releases/download/v$1/$app_source_bin"
echo "Downloading [$app_download_url]..."
Expand All @@ -119,7 +122,7 @@ runs:
chmod 777 "$app_home/$app_target_bin"
app_downloaded=true
}
case "$INPUTS_VERSION_LOWERCASE" in
any)
if [[ ! -f "$app_home/$app_target_bin" ]]; then
Expand Down

0 comments on commit dc90a9a

Please sign in to comment.