Skip to content

Commit fb70fe2

Browse files
committed
Disable win32-ia32 VSIX builds
1 parent f888a6e commit fb70fe2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
code-target: win32-x64
3131
- os: windows-latest
3232
target: i686-pc-windows-msvc
33-
code-target: win32-ia32
3433
- os: windows-latest
3534
target: aarch64-pc-windows-msvc
3635
code-target: win32-arm64
@@ -102,12 +101,12 @@ jobs:
102101
working-directory: editors/code
103102

104103
- name: Package Extension (release)
105-
if: github.ref == 'refs/heads/release'
104+
if: github.ref == 'refs/heads/release' && matrix.code-target
106105
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
107106
working-directory: editors/code
108107

109108
- name: Package Extension (nightly)
110-
if: github.ref != 'refs/heads/release'
109+
if: github.ref != 'refs/heads/release' && matrix.code-target
111110
run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }} --pre-release
112111
working-directory: editors/code
113112

0 commit comments

Comments
 (0)