feat: add code image build to sandbox-image workflow - #314
Merged
Conversation
The code agent image (ghcr.io/fullsend-ai/fullsend-code) extends the base sandbox image with Go, gitleaks, and pre-commit. Without a CI build, the image doesn't exist and code agent sandbox creation fails. Add a build-code job that runs after build-base, passing the freshly built base image via the BASE_IMAGE build arg. Widen the paths trigger to include images/code/**. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Site previewPreview: https://2a4364a3-site.fullsend-ai.workers.dev Commit: |
The previous expression fell back to steps.meta.outputs.tags which is a multi-line string, producing an invalid BASE_IMAGE build-arg. On PRs the base image isn't pushed, so build-code couldn't pull it. Replace with a shell step that emits a single reference: - Push context: immutable digest (name@sha256:...) - PR context: latest published image from registry Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
ascerra
requested changes
Apr 21, 2026
Contributor
There was a problem hiding this comment.
We need to delete the build-images.yml job I just created in PR #286
https://github.com/fullsend-ai/fullsend/pull/286/changes#diff-a6ce9b5b0a53d8dc6dbd59d40b23994c3e68a91fac73c0d7eacdf373c95476c9
I was just thinking about working on a PR to combine all of our builds into a single job so I like this approach as long as you remove the other one as a part of this
and now I'm thinking this job shouldn't be names sandbox-image.yml (maybe change to sandbox-images.yml or some other name to describe its building more then just one sandbox image)
ascerra
approved these changes
Apr 21, 2026
This was referenced Jul 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The code agent image (ghcr.io/fullsend-ai/fullsend-code) extends the base sandbox image with Go, gitleaks, and pre-commit. Without a CI build, the image doesn't exist and code agent sandbox creation fails.
Add a build-code job that runs after build-base, passing the freshly built base image via the BASE_IMAGE build arg. Widen the paths trigger to include images/code/**.