Skip to content

Commit f8e9096

Browse files
committed
fix(release): agent lockfiles for filesystem dependency
Signed-off-by: Radek Ježek <radek.jezek@ibm.com>
1 parent 47e313f commit f8e9096

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

agents/community/aider/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /app
55
WORKDIR /agents/community/aider
66
COPY ./agents/community/aider/ ./
77
COPY ./apps/beeai-sdk/ /apps/beeai-sdk/
8-
RUN uv sync --no-cache --locked --link-mode copy
8+
RUN uv sync --no-cache --link-mode copy
99
ENV PRODUCTION_MODE=True \
1010
RELEASE_VERSION=${RELEASE_VERSION}
1111
CMD ["uv", "run", "--no-sync", "server"]

agents/community/gpt-researcher/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY --from=ghcr.io/astral-sh/uv:0.6.16 /uv /bin/
44
WORKDIR /agents/community/gpt-researcher
55
COPY ./agents/community/gpt-researcher/ ./
66
COPY ./apps/beeai-sdk/ /apps/beeai-sdk/
7-
RUN uv sync --no-cache --locked --link-mode copy
7+
RUN uv sync --no-cache --link-mode copy
88
ENV PRODUCTION_MODE=True \
99
RELEASE_VERSION=${RELEASE_VERSION}
1010
CMD ["uv", "run", "--no-sync", "server"]

agents/official/beeai-framework/chat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY --from=ghcr.io/astral-sh/uv:0.6.16 /uv /bin/
1111
WORKDIR /agents/official/beeai-framework/chat
1212
COPY ./agents/official/beeai-framework/chat/ ./
1313
COPY ./apps/beeai-sdk/ /apps/beeai-sdk/
14-
RUN uv sync --no-cache --locked --link-mode copy
14+
RUN uv sync --no-cache --link-mode copy
1515
ENV PRODUCTION_MODE=True \
1616
RELEASE_VERSION=${RELEASE_VERSION}
1717
CMD ["uv", "run", "--no-sync", "server"]

agents/official/beeai-framework/chat/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agents/official/sequential-workflow/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /app
55
WORKDIR /agents/official/sequential-workflow
66
COPY ./agents/official/sequential-workflow/ ./
77
COPY ./apps/beeai-sdk/ /apps/beeai-sdk/
8-
RUN uv sync --no-cache --locked --link-mode copy
8+
RUN uv sync --no-cache --link-mode copy
99
ENV PRODUCTION_MODE=True \
1010
RELEASE_VERSION=${RELEASE_VERSION}
1111
CMD ["uv", "run", "--no-sync", "server"]

apps/beeai-sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "beeai-sdk"
3-
version = "0.3.0-rc1"
3+
version = "0.3.0-rc2"
44
description = "BeeAI SDK"
55
readme = "README.md"
66
authors = [{ name = "IBM Corp." }]

apps/beeai-sdk/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tasks.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ yq -i ".providers[].location |= sub(\":(.*)\$\"; \":\" + \"$new_version\")" agen
231231
if gum confirm "Release version $new_version now?"; then
232232
(
233233
set -eux -o pipefail
234-
git add agent-registry.yaml helm/Chart.yaml apps/beeai-{cli,server}/{uv.lock,pyproject.toml} apps/beeai-{ui,web}/package.json
234+
git add agent-registry.yaml helm/Chart.yaml apps/beeai-{cli,server}/{uv.lock,pyproject.toml} apps/beeai-{ui,web,sdk}/package.json
235235
git commit -m "release: v$new_version"
236236
git tag "v$new_version"
237237
git push --atomic origin main "v$new_version"

0 commit comments

Comments
 (0)