From 59dbce64298046a6f979925e193ca7e70817a529 Mon Sep 17 00:00:00 2001 From: Vadim Piven Date: Thu, 9 Jul 2026 14:18:31 +0200 Subject: [PATCH] fix(ci): PR builds use build:dev-local, publish uses build:release The structurer migration left build-script-name pointing at build:release, so PR/merge-queue validation ran the release channel (remote software upload). Validate PRs locally with build:dev-local and keep the release build for the publish leg via build-before-publish-script-name. --- .github/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d216327..6c4b549 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,7 +25,8 @@ jobs: app-name: 'Block: Rarefaction' app-name-slug: 'block-rarefaction' node-version: '20.x' - build-script-name: 'build:release' + build-script-name: 'build:dev-local' + build-before-publish-script-name: 'build:release' pnpm-recursive-build: false test: true