Deploy verified dist during release shipping

This commit is contained in:
2026-07-05 19:41:39 +09:00
parent 7bc62b538c
commit 728a88db8a
2 changed files with 2 additions and 1 deletions

View File

@@ -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": {

View File

@@ -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}`);