We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 267b130 commit beb9b02Copy full SHA for beb9b02
1 file changed
.github/workflows/build.yml
@@ -377,7 +377,12 @@ jobs:
377
matrix:
378
# We're not running CI on macOS for now because it's one less matrix entry to lower the number of runners used,
379
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the UNIX case.
380
- os: [ubuntu-latest, windows-latest]
+ include:
381
+ - os: windows-latest
382
+ vsix-target: win32-x64
383
+ - os: ubuntu-latest
384
+ vsix-target: linux-x64
385
+
386
steps:
387
- name: Checkout
388
uses: actions/checkout@v4
@@ -386,4 +391,4 @@ jobs:
391
uses: ./.github/actions/smoke-tests
392
with:
393
node_version: ${{ env.NODE_VERSION }}
389
- artifact_name: ${{ needs.setup.outputs.vsix_artifact_name }}
394
+ artifact_name: ${{ needs.setup.outputs.vsix_artifact_name }}-${{ matrix.vsix-target }}
0 commit comments