From 2d4a21594b76c3e998732935996d6609e0af9403 Mon Sep 17 00:00:00 2001 From: budougumi0617 Date: Thu, 6 May 2021 03:37:32 +0900 Subject: [PATCH] :heart: remove unused step, add info --- script.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/script.sh b/script.sh index 3cc0f49..9b9352f 100755 --- a/script.sh +++ b/script.sh @@ -5,11 +5,8 @@ cd "${GITHUB_WORKSPACE}/${INPUT_WORKDIR}" || exit 1 TEMP_PATH="$(mktemp -d)" PATH="${TEMP_PATH}:$PATH" -echo '::group::🐶 Installing reviewdog ... https://github.com/reviewdog/reviewdog' -curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b "${TEMP_PATH}" "${REVIEWDOG_VERSION}" 2>&1 -echo '::endgroup::' - echo '::group:: Installing gigi ... https://github.com/budougumi0617/gigi' +echo "info: $(curl -Ls https://api.github.com/repos/budougumi0617/gigi/releases/latest | grep html_url.*tag)" curl -L "$(curl -Ls https://api.github.com/repos/budougumi0617/gigi/releases/latest | grep -o -E "https://.+?_Linux_x86_64.tar.gz")" -o gigi.tar.gz && tar -zxvf gigi.tar.gz -C "${TEMP_PATH}" && rm gigi.tar.gz echo '::endgroup::'