project-auto-wizard 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-auto-wizard",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "One command DevOps: npx wizard that installs GitHub-native AI Release Automation into any project",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -89,7 +89,7 @@ export function substituteEnv(content, opts = {}) {
89
89
  if (chosen != null && chosen !== "" && !useDefaults) val = chosen;
90
90
  else val = def;
91
91
  // ask 키만 수집 (.sh wf_deploy_set — auto는 저장 안 함). deploy 블록용.
92
- if (collectAsks) collectAsks.set(p.key, val);
92
+ if (collectAsks) collectAsks.set(p.key, replaceProjectTokens(val, repoName));
93
93
  }
94
94
  lines[i] = setEnvLine(lines[i], p.key, val);
95
95
  }