fix(runtime): download dev bootstrap from app release tag

This commit is contained in:
777genius 2026-04-12 22:25:59 +03:00
parent 92dd9318a5
commit f24ab438b8
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,7 @@
"sourceRef": "v0.0.1",
"sourceRepository": "777genius/agent_teams_orchestrator",
"releaseRepository": "777genius/claude_agent_teams_ui",
"releaseTag": "v1.2.0",
"assets": {
"darwin-arm64": {
"file": "agent-teams-runtime-darwin-arm64-v0.0.1.tar.gz",

View file

@ -96,7 +96,10 @@ function getPlatformAssetKey() {
}
function getReleaseAssetUrl(runtimeLock, asset) {
return `https://github.com/${runtimeLock.releaseRepository}/releases/download/${runtimeLock.sourceRef}/${encodeURIComponent(asset.file)}`;
const releaseTag = typeof runtimeLock.releaseTag === 'string' && runtimeLock.releaseTag.trim().length > 0
? runtimeLock.releaseTag.trim()
: runtimeLock.sourceRef;
return `https://github.com/${runtimeLock.releaseRepository}/releases/download/${releaseTag}/${encodeURIComponent(asset.file)}`;
}
function ensureDir(dirPath) {