From 88568398ac8115b88cda5991e8d3391eb1c70e29 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 12 Mar 2026 01:06:30 +0900 Subject: [PATCH] fix: sync root package.json version before binary compile (#2407) --- .github/workflows/publish-platform.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish-platform.yml b/.github/workflows/publish-platform.yml index 87bb23e0c..a7f9439ca 100644 --- a/.github/workflows/publish-platform.yml +++ b/.github/workflows/publish-platform.yml @@ -82,6 +82,11 @@ jobs: cd packages/${{ matrix.platform }} jq --arg v "$VERSION" '.version = $v' package.json > tmp.json && mv tmp.json package.json + - name: Set root package version + if: steps.check.outputs.skip != 'true' + run: | + jq --arg v "${{ inputs.version }}" '.version = $v' package.json > tmp.json && mv tmp.json package.json + - name: Pre-download baseline compile target if: steps.check.outputs.skip != 'true' && endsWith(matrix.platform, '-baseline') shell: bash