From 728a88db8acf80152dac93c815d7f62e4411f4ce Mon Sep 17 00:00:00 2001 From: Wickedness Date: Sun, 5 Jul 2026 19:41:39 +0900 Subject: [PATCH] Deploy verified dist during release shipping --- package.json | 1 + scripts/ship-release.mjs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 98a380a..c5dd196 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "qa:representative": "node scripts/qa-representative-battles.mjs", "qa:smoke": "node scripts/qa-representative-battles.mjs --set=smoke", "deploy:nas": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/deploy-nas.ps1 -Build", + "deploy:nas:dist": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/deploy-nas.ps1", "ship:release": "node scripts/ship-release.mjs" }, "dependencies": { diff --git a/scripts/ship-release.mjs b/scripts/ship-release.mjs index 70776ae..067f8e9 100644 --- a/scripts/ship-release.mjs +++ b/scripts/ship-release.mjs @@ -3,7 +3,7 @@ import { spawnSync } from 'node:child_process'; const qaVersion = process.env.PUBLIC_QA_VERSION ?? makeQaVersion(); runPnpmScript('verify:local-release'); -runPnpmScript('deploy:nas'); +runPnpmScript('deploy:nas:dist'); runPnpmScript('verify:public-deploy', { PUBLIC_QA_VERSION: qaVersion }); console.log(`Shipped and verified public deploy with PUBLIC_QA_VERSION=${qaVersion}`);