-
Notifications
You must be signed in to change notification settings - Fork 138
fix(server): minor improvements #1720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -101,12 +101,16 @@ run = "true" # Empty tests in case there are no tests | |
| # Platform tasks | ||
|
|
||
| ["agentstack:start"] | ||
| depends = ["agentstack-server:build", "supergateway:build"] | ||
| dir = "{{config_root}}" | ||
| run = """ | ||
| #!/bin/bash | ||
| set -e | ||
|
|
||
| if [[ "$*" != *"--set externalRegistry="* ]]; then | ||
| latest_tag=$(git ls-remote --tags $(git remote get-url origin) 'v*' | grep -o 'refs/tags/v[0-9]*\\.[0-9]*\\.[0-9]*$' | sed 's|refs/tags/||' | sort -V | tail -n 1) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| export AGENTSTACK__AGENT_REGISTRY="https://github.com/i-am-bee/agentstack@$latest_tag#path=agent-registry.yaml" | ||
| echo "Using agents from: $AGENTSTACK__AGENT_REGISTRY\n use --set externalRegistry=<null|github-url> to override this." | ||
| fi | ||
|
|
||
| UI_IMPORT="" | ||
| UI_TAG="" | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
dependskey has been removed. This means thatagentstack-server:buildandsupergateway:buildwill no longer run automatically before this task. Developers will need to run these build tasks manually. Was this intentional? If so, it might be worth documenting this change in workflow. If not, this dependency should be restored to ensure a smooth developer experience.