about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2023-11-15 10:26:22 +0200
committerLaurențiu Nicola <lnicola@dend.ro>2023-11-15 11:07:31 +0200
commitfb70fe27d4853ca8e1bbf266b9d500c956ac5130 (patch)
tree45e709c60475b219a12369bf044a3edd966a3fa6
parentf888a6eb5f34f647aedcf29944e21aa57424261b (diff)
downloadrust-fb70fe27d4853ca8e1bbf266b9d500c956ac5130.tar.gz
rust-fb70fe27d4853ca8e1bbf266b9d500c956ac5130.zip
Disable win32-ia32 VSIX builds
-rw-r--r--.github/workflows/release.yaml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index b5dbe30c322..6a3cdfe3a3c 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -30,7 +30,6 @@ jobs:
             code-target: win32-x64
           - os: windows-latest
             target: i686-pc-windows-msvc
-            code-target: win32-ia32
           - os: windows-latest
             target: aarch64-pc-windows-msvc
             code-target: win32-arm64
@@ -102,12 +101,12 @@ jobs:
         working-directory: editors/code
 
       - name: Package Extension (release)
-        if: github.ref == 'refs/heads/release'
+        if: github.ref == 'refs/heads/release' && matrix.code-target
         run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }}
         working-directory: editors/code
 
       - name: Package Extension (nightly)
-        if: github.ref != 'refs/heads/release'
+        if: github.ref != 'refs/heads/release' && matrix.code-target
         run: npx vsce package -o "../../dist/rust-analyzer-${{ matrix.code-target }}.vsix" --target ${{ matrix.code-target }} --pre-release
         working-directory: editors/code