From 6aa65808631b7395f8920e7dc674c4e9294639de Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 13 Sep 2025 14:10:28 +0200 Subject: [PATCH] Use npm to install Claude Code CLI instead of curl script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### 🔧 Improvements - Changed Claude Code CLI installation to use npm package @anthropic-ai/claude-code - Simpler and more reliable than curl-based installation script - Leverages existing Node.js environment in GitHub Actions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/version-and-publish.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/version-and-publish.yml b/.github/workflows/version-and-publish.yml index 9bb26db..d16fc7f 100644 --- a/.github/workflows/version-and-publish.yml +++ b/.github/workflows/version-and-publish.yml @@ -100,8 +100,7 @@ jobs: - name: Install Claude Code CLI run: | echo "🤖 Installing Claude Code CLI..." - curl -fsSL https://claude.ai/cli/install.sh | sh - echo "$HOME/.local/bin" >> $GITHUB_PATH + npm install -g @anthropic-ai/claude-code - name: Generate changelog with Claude id: changelog