refactor: remove docker tagging step from sandbox publishing (#1223)

This commit is contained in:
Brandon Keiji 2025-06-19 12:19:39 -07:00 committed by GitHub
parent 0ebac0b896
commit 10a83a6395
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 4 additions and 8 deletions

View file

@ -91,7 +91,7 @@ export async function loadSandboxConfig(
const image =
argv['sandbox-image'] ??
process.env.GEMINI_SANDBOX_IMAGE ??
packageJson?.config?.sandboximageName;
packageJson?.config?.sandboxImageUri;
return command && image ? { command, image } : undefined;
}