Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading