From 8d83576de43da7cef7ead3bed2ffdb48932812ac Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Mon, 24 Sep 2018 21:05:37 -0400 Subject: [PATCH] cleanup Signed-off-by: Jess Frazelle --- github-dev/upload-assets | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/github-dev/upload-assets b/github-dev/upload-assets index 342a1fd..bf2a551 100755 --- a/github-dev/upload-assets +++ b/github-dev/upload-assets @@ -36,7 +36,6 @@ main(){ tag_response=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${GITHUB_REPOSITORY}/tags") tag_name=$(echo "$tag_response" | jq -e --raw-output .[0].name) - tag_id=$(echo "$tag_response" | jq -e --raw-output .[0].id) # Get the latest release. latest_response=$(curl -sSL -H "${AUTH_HEADER}" -H "${API_HEADER}" "${URI}/repos/${GITHUB_REPOSITORY}/releases/latest") @@ -53,7 +52,7 @@ main(){ # Upload the files. echo "Uploading files: ${files[*]}" - echo "For tag name: ${tag_name} tag id: ${tag_id}" + echo "For tag name: ${tag_name}" # shellcheck disable=SC2068 for file in ${files[@]}; do