From 7be32edcb9a7f957f8b2abf9462cee328424cec4 Mon Sep 17 00:00:00 2001
From: Nathan Houle <nathan@nathanhoule.com>
Date: Wed, 26 Mar 2025 08:47:14 -0700
Subject: [PATCH] ci: don't build project in integration test workflow during
 release

Regression introduced in 4571be31; we skip all other steps during the
integration test workflow (git checkout, etc.), so the build step will
always fail.
---
 .github/workflows/integration-tests.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 4cda4bc7c8b..b034b4d722d 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -76,6 +76,7 @@ jobs:
 
       - name: Build project
         run: npm run build
+        if: '${{!steps.release-check.outputs.IS_RELEASE}}'
 
       - name: Prepare tests
         run: npm run test:init
@@ -186,6 +187,7 @@ jobs:
 
       - name: Build project
         run: npm run build
+        if: '${{!steps.release-check.outputs.IS_RELEASE}}'
 
       - name: Prepare tests
         run: npm run test:init