From 46b6081227c9fc4b9fff3137184ca7942e5c9714 Mon Sep 17 00:00:00 2001 From: not-matthias <26800596+not-matthias@users.noreply.github.com> Date: Thu, 18 Dec 2025 17:51:24 +0100 Subject: [PATCH] fix: specify package when using branch/ref --- 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)