From 6346e7eefa04e2eba42743e245e3b0d574fdd39b Mon Sep 17 00:00:00 2001 From: Ajit Pratap Singh Date: Sat, 14 Mar 2026 01:02:43 +0530 Subject: [PATCH] fix: correct smoke test command and add fail-fast: false in vscode-publish The CLI uses --version flag, not version subcommand. Also prevent one platform failure from canceling all other builds. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/vscode-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vscode-publish.yml b/.github/workflows/vscode-publish.yml index 08a70ee5..48de7315 100644 --- a/.github/workflows/vscode-publish.yml +++ b/.github/workflows/vscode-publish.yml @@ -21,6 +21,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 15 strategy: + fail-fast: false matrix: include: - target: linux-x64 @@ -67,7 +68,7 @@ jobs: if: matrix.target == 'linux-x64' run: | chmod +x vscode-extension/bin/${{ matrix.binary }} - ./vscode-extension/bin/${{ matrix.binary }} version + ./vscode-extension/bin/${{ matrix.binary }} --version - name: Setup Node uses: actions/setup-node@v4