Skip to content

Commit 6bab48f

Browse files
committed
fix(release): typo in agent-registry tags
Signed-off-by: Radek Ježek <[email protected]>
1 parent d8da9c7 commit 6bab48f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

agent-registry.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
providers:
22
# Official
3-
- location: ghcr.io/i-am-bee/beeai-platform/official/sequential-workflow:v0.2.15
4-
- location: ghcr.io/i-am-bee/beeai-platform/official/beeai-framework/chat:v0.2.15
3+
- location: ghcr.io/i-am-bee/beeai-platform/official/sequential-workflow:0.2.15
4+
- location: ghcr.io/i-am-bee/beeai-platform/official/beeai-framework/chat:0.2.15
55
# Community
6-
- location: ghcr.io/i-am-bee/beeai-platform/community/aider:v0.2.15
7-
- location: ghcr.io/i-am-bee/beeai-platform/community/gpt-researcher:v0.2.15
6+
- location: ghcr.io/i-am-bee/beeai-platform/community/aider:0.2.15
7+
- location: ghcr.io/i-am-bee/beeai-platform/community/gpt-researcher:0.2.15

tasks.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ version=$(
6868
yq -r .project.version apps/beeai-server/pyproject.toml
6969
yq -r .version apps/beeai-ui/package.json
7070
yq -r .version apps/beeai-web/package.json
71-
yq -r '.providers[].location | split(":v")[-1]' agent-registry.yaml
71+
yq -r '.providers[].location | split(":")[-1]' agent-registry.yaml
7272
} | sort -u
7373
)
7474
if [[ $(wc -l <<<"$version") -ne 1 ]]; then echo "ERROR: Version mismatch detected: $(echo $version)" >&2; exit 1; fi
@@ -223,7 +223,7 @@ yq -i ".appVersion = \"$new_version\"" helm/Chart.yaml
223223
(cd apps/beeai-server && toml set 'project.version' "$new_version" --toml-path pyproject.toml && uv lock)
224224
yq -i ".version = \"$new_version\"" apps/beeai-ui/package.json
225225
yq -i ".version = \"$new_version\"" apps/beeai-web/package.json
226-
yq -i ".providers[].location |= sub(\":(.*)\$\"; \":v\" + \"$new_version\")" agent-registry.yaml
226+
yq -i ".providers[].location |= sub(\":(.*)\$\"; \":\" + \"$new_version\")" agent-registry.yaml
227227
228228
# Confirm commit and push
229229
if gum confirm "Release version $new_version now?"; then

0 commit comments

Comments
 (0)