From ac98f9308859f413a4e4563432a96b249f3310e9 Mon Sep 17 00:00:00 2001 From: Guillaume Lagrange Date: Thu, 18 Dec 2025 17:48:49 +0100 Subject: [PATCH] fix: specify which binary to install when installing the runner from git Now that the repository has multiple binaries, this is mandatory --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0cdb9f0..088df2a 100644 --- a/action.yml +++ b/action.yml @@ -139,11 +139,11 @@ runs: elif [ "$VERSION_TYPE" = "branch" ]; then # Install from specific branch using cargo source $HOME/.cargo/env - cargo install --locked --git https://github.com/CodSpeedHQ/runner --branch "$RUNNER_VERSION" + cargo install --locked --git https://github.com/CodSpeedHQ/runner --branch "$RUNNER_VERSION" codspeed-runner elif [ "$VERSION_TYPE" = "rev" ]; then # Install from specific commit/rev using cargo source $HOME/.cargo/env - cargo install --locked --git https://github.com/CodSpeedHQ/runner --rev "$RUNNER_VERSION" + cargo install --locked --git https://github.com/CodSpeedHQ/runner --rev "$RUNNER_VERSION" codspeed-runner else # Release version head_status=$(curl -I -fsSL -w "%{http_code}" -o /dev/null https://github.com/CodSpeedHQ/runner/releases/download/v$RUNNER_VERSION/codspeed-runner-installer.sh)