diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index da5e377b59..c8ff4249f4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,14 @@ "image": "mcr.microsoft.com/devcontainers/go:1-bookworm", "customizations": { "vscode": { - "extensions": ["golang.go", "GitHub.copilot-chat", "GitHub.copilot", "github.vscode-github-actions", "astro-build.astro-vscode", "DavidAnson.vscode-markdownlint"] + "extensions": [ + "golang.go", + "GitHub.copilot-chat", + "GitHub.copilot", + "github.vscode-github-actions", + "astro-build.astro-vscode", + "DavidAnson.vscode-markdownlint" + ] }, "codespaces": { "repositories": { diff --git a/actions/setup/js/push_repo_memory.cjs b/actions/setup/js/push_repo_memory.cjs index cd86a77c5f..ccea0798a2 100644 --- a/actions/setup/js/push_repo_memory.cjs +++ b/actions/setup/js/push_repo_memory.cjs @@ -38,7 +38,8 @@ async function main() { } // Source directory with memory files (artifact location) - const sourceMemoryPath = path.join(artifactDir, "memory", memoryId); + // The artifactDir IS the memory directory (no nested structure needed) + const sourceMemoryPath = artifactDir; // Check if artifact memory directory exists if (!fs.existsSync(sourceMemoryPath)) {