From 4b969b6870aae6b5859b9a1be0cf98b9d537ce00 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Thu, 18 Dec 2025 18:16:39 -0500 Subject: [PATCH] fix(ci): remove deprecated installer references from dev-release workflow The native shell installers (install.sh, install.ps1) were removed in the recent refactor, but the dev-release workflow still tried to update and commit them, causing CI failures. --- .github/workflows/dev-release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 80ae031a..05d90f92 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -88,10 +88,6 @@ jobs: jq --arg v "$NEW_VERSION" '.version = $v' package.json > package.json.tmp mv package.json.tmp package.json - # Update installers - sed -i "s/^VERSION=.*/VERSION=\"$NEW_VERSION\"/" installers/install.sh - sed -i "s/^\$Version = .*/\$Version = \"$NEW_VERSION\"/" installers/install.ps1 - - name: Publish to npm env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} @@ -154,6 +150,6 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - git add VERSION package.json installers/install.sh installers/install.ps1 + git add VERSION package.json git commit -m "chore(release): ${{ steps.bump.outputs.new }} [skip ci]" git push origin dev