From ae1ecfc87c8f52e46e9ca38dc5107082addf191c Mon Sep 17 00:00:00 2001 From: Lucas Machado Date: Sun, 8 Mar 2026 16:10:14 +0100 Subject: [PATCH] fix: update action binary name to match goreleaser output --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 48edc24..c824e1e 100644 --- a/action.yml +++ b/action.yml @@ -95,8 +95,9 @@ runs: # Download and extract the specific binary (Public asset, no token needed) URL="https://github.com/AxeForging/reviewforge/releases/download/${VERSION}/reviewforge-${OS}-${ARCH}.tar.gz" echo "Downloading $URL..." - curl -sSL "$URL" | tar -xz - mv "reviewforge-${OS}-${ARCH}" reviewforge_bin + curl -sSL "$URL" -o /tmp/reviewforge.tar.gz + tar -xzf /tmp/reviewforge.tar.gz -C /tmp + mv /tmp/reviewforge reviewforge_bin chmod +x reviewforge_bin - name: Run ReviewForge