chore(release): use runtime 0.0.51
This commit is contained in:
parent
91ccd75ddf
commit
8d722e62dc
2 changed files with 18 additions and 7 deletions
|
|
@ -109,6 +109,17 @@ git status
|
||||||
git push origin <branch>
|
git push origin <branch>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Before starting the app release workflow, check whether the orchestrator has
|
||||||
|
new commits that must be included in the packaged runtime:
|
||||||
|
|
||||||
|
- Pull and push the orchestrator repo first.
|
||||||
|
- If the orchestrator changed after the current `runtime.lock.json` `sourceRef`,
|
||||||
|
bump the orchestrator `package.json` runtime version, create and push the
|
||||||
|
matching `v<RUNTIME_VERSION>` tag, then update `runtime.lock.json` in this repo
|
||||||
|
to the same `version`, `sourceRef`, `releaseTag`, and runtime asset filenames.
|
||||||
|
- Do not start the app release workflow while `runtime.lock.json` still points
|
||||||
|
at an older orchestrator tag.
|
||||||
|
|
||||||
### 2. Create tag and push
|
### 2. Create tag and push
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,27 @@
|
||||||
{
|
{
|
||||||
"version": "0.0.50",
|
"version": "0.0.51",
|
||||||
"sourceRef": "v0.0.50",
|
"sourceRef": "v0.0.51",
|
||||||
"sourceRepository": "777genius/agent_teams_orchestrator",
|
"sourceRepository": "777genius/agent_teams_orchestrator",
|
||||||
"releaseRepository": "777genius/agent-teams-ai",
|
"releaseRepository": "777genius/agent-teams-ai",
|
||||||
"releaseTag": "v2.2.1",
|
"releaseTag": "v2.3.0",
|
||||||
"assets": {
|
"assets": {
|
||||||
"darwin-arm64": {
|
"darwin-arm64": {
|
||||||
"file": "agent-teams-runtime-darwin-arm64-v0.0.50.tar.gz",
|
"file": "agent-teams-runtime-darwin-arm64-v0.0.51.tar.gz",
|
||||||
"archiveKind": "tar.gz",
|
"archiveKind": "tar.gz",
|
||||||
"binaryName": "claude-multimodel"
|
"binaryName": "claude-multimodel"
|
||||||
},
|
},
|
||||||
"darwin-x64": {
|
"darwin-x64": {
|
||||||
"file": "agent-teams-runtime-darwin-x64-v0.0.50.tar.gz",
|
"file": "agent-teams-runtime-darwin-x64-v0.0.51.tar.gz",
|
||||||
"archiveKind": "tar.gz",
|
"archiveKind": "tar.gz",
|
||||||
"binaryName": "claude-multimodel"
|
"binaryName": "claude-multimodel"
|
||||||
},
|
},
|
||||||
"linux-x64": {
|
"linux-x64": {
|
||||||
"file": "agent-teams-runtime-linux-x64-v0.0.50.tar.gz",
|
"file": "agent-teams-runtime-linux-x64-v0.0.51.tar.gz",
|
||||||
"archiveKind": "tar.gz",
|
"archiveKind": "tar.gz",
|
||||||
"binaryName": "claude-multimodel"
|
"binaryName": "claude-multimodel"
|
||||||
},
|
},
|
||||||
"win32-x64": {
|
"win32-x64": {
|
||||||
"file": "agent-teams-runtime-win32-x64-v0.0.50.zip",
|
"file": "agent-teams-runtime-win32-x64-v0.0.51.zip",
|
||||||
"archiveKind": "zip",
|
"archiveKind": "zip",
|
||||||
"binaryName": "claude-multimodel.exe"
|
"binaryName": "claude-multimodel.exe"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue