Skip to content

Commit 3e7f1cd

Browse files
ajitpratap0Ajit Pratap Singhclaude
authored
fix: correct smoke test command and add fail-fast: false in vscode-publish (#363)
The CLI uses --version flag, not version subcommand. Also prevent one platform failure from canceling all other builds. Co-authored-by: Ajit Pratap Singh <ajitpratapsingh@Ajits-Mac-mini-2655.local> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0ab9ba3 commit 3e7f1cd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/vscode-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
timeout-minutes: 15
2323
strategy:
24+
fail-fast: false
2425
matrix:
2526
include:
2627
- target: linux-x64
@@ -67,7 +68,7 @@ jobs:
6768
if: matrix.target == 'linux-x64'
6869
run: |
6970
chmod +x vscode-extension/bin/${{ matrix.binary }}
70-
./vscode-extension/bin/${{ matrix.binary }} version
71+
./vscode-extension/bin/${{ matrix.binary }} --version
7172
7273
- name: Setup Node
7374
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)