From e887d69cdcae15d4f5d3adeccfbebeef2057a527 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Tue, 2 Dec 2025 11:25:09 -0800 Subject: [PATCH] [fix] Fix tsx command not found in weekly release workflow (#7099) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the "tsx: command not found" error from the manual dispatch test run. ## Issue The workflow failed with: ## Fix Changed to since tsx is a devDependency and needs to be run through pnpm. ## Related - Failed run: https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/19833631926/job/56825533678 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7099-fix-Fix-tsx-command-not-found-in-weekly-release-workflow-2bd6d73d3650812fb401fb8010154bf6) by [Unito](https://www.unito.io) --- .github/workflows/release-weekly-comfyui.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-weekly-comfyui.yaml b/.github/workflows/release-weekly-comfyui.yaml index d763aa0f5..a46c55086 100644 --- a/.github/workflows/release-weekly-comfyui.yaml +++ b/.github/workflows/release-weekly-comfyui.yaml @@ -63,7 +63,7 @@ jobs: set -euo pipefail # Run the resolver script - if ! RESULT=$(tsx scripts/cicd/resolve-comfyui-release.ts ../comfyui .); then + if ! RESULT=$(pnpm exec tsx scripts/cicd/resolve-comfyui-release.ts ../comfyui .); then echo "Failed to resolve release information" exit 1 fi