From 9678fce999568e4b2afe36c559a8c1cd6b8878a2 Mon Sep 17 00:00:00 2001 From: anish <145943060+anishesg@users.noreply.github.com> Date: Fri, 14 Aug 2026 16:31:36 -0700 Subject: [PATCH] fix(base-action): add ~/.local/bin to $GITHUB_PATH after auto-install (#1643) ## Problem Signed-off-by: anish Co-authored-by: anish --- base-action/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base-action/action.yml b/base-action/action.yml index 136d7906..62156a36 100644 --- a/base-action/action.yml +++ b/base-action/action.yml @@ -165,6 +165,8 @@ runs: sleep 5 done echo "Claude Code installed successfully" + # Add ~/.local/bin to PATH so the claude executable is available in subsequent steps + echo "$HOME/.local/bin" >> "$GITHUB_PATH" else echo "Using custom Claude Code executable: $PATH_TO_CLAUDE_CODE_EXECUTABLE" # Add the directory containing the custom executable to PATH