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