From a469c666feb45d524c1492aa86a510c8f18d8280 Mon Sep 17 00:00:00 2001 From: jung-geun Date: Mon, 11 May 2026 14:02:02 +0900 Subject: [PATCH] =?UTF-8?q?fix(build):=20electron-builder=20publish=20?= =?UTF-8?q?=EB=B9=84=ED=99=9C=EC=84=B1=ED=99=94=20=EB=B0=8F=20explicit=20?= =?UTF-8?q?=ED=94=8C=EB=9E=98=EA=B7=B8=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - package.json: "publish": "never" → null (이전 값은 "never" 이름의 publisher provider를 찾으려 해 v2.0.0/v2.0.1 release 빌드가 실패함) - release.yml: electron-builder에 --publish never 플래그를 명시적으로 전달해 git tag 기반 implicit publishing(v27에서 제거 예정) 경고 제거 Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d3726b..8e5894f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: run: npm ci - name: Build - run: npm run build + run: npm run build:cli && npm run build:lib && npm run build:app -- --publish never env: CSC_IDENTITY_AUTO_DISCOVERY: "false" diff --git a/package.json b/package.json index 6ebe02b..eae898f 100644 --- a/package.json +++ b/package.json @@ -104,6 +104,6 @@ "buildResources": "resources", "output": "dist" }, - "publish": "never" + "publish": null } }