From 9dfad63c09719f4d8448443a1d285fc5d9c527ab Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sat, 27 Jun 2026 23:27:25 +0200 Subject: [PATCH] Update install/forgejo-runner-install.sh Co-authored-by: Sam Heinz --- install/forgejo-runner-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/forgejo-runner-install.sh b/install/forgejo-runner-install.sh index c52480b61..25cf5b9df 100644 --- a/install/forgejo-runner-install.sh +++ b/install/forgejo-runner-install.sh @@ -65,7 +65,7 @@ msg_ok "Enabled Podman socket" msg_info "Installing Forgejo Runner" RUNNER_VERSION=$(curl -fsSL https://data.forgejo.org/api/v1/repos/forgejo/runner/releases/latest | jq -r .name | sed 's/^v//') -curl -fsSL "https://code.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-amd64" -o /usr/local/bin/forgejo-runner +curl -fsSL "https://code.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-$(arch_resolve)" -o /usr/local/bin/forgejo-runner chmod +x /usr/local/bin/forgejo-runner echo "${RUNNER_VERSION}" >~/.forgejo-runner msg_ok "Installed Forgejo Runner"