Skip to content

Commit bff6191

Browse files
Claudeclaude
authored andcommitted
fix: correct banner.svg path for docs deploy
The deploy workflow copies out/docs/ to the landing repo but banner.svg from public/ lands at out/ root. Now copies it into docs/ directory and references it at /docs/banner.svg to match the live site path. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e4e9e31 commit bff6191

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
cp -r apps/docs/out/_next _landing/_next
5151
cp apps/docs/out/llms.txt _landing/llms.txt
5252
cp apps/docs/out/llms-full.txt _landing/llms-full.txt
53+
# Copy static assets that live at site root in the Next.js build
54+
[ -f apps/docs/out/banner.svg ] && cp apps/docs/out/banner.svg _landing/docs/banner.svg
5355
5456
- name: Push to landing repo
5557
run: |

apps/docs/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Callout } from 'fumadocs-ui/components/callout'
88
import { Steps, Step } from 'fumadocs-ui/components/steps'
99

1010
<div className="gitmem-banner">
11-
<img src="/banner.svg" alt="GitMem — Institutional memory for AI coding agents" />
11+
<img src="/docs/banner.svg" alt="GitMem — Institutional memory for AI coding agents" />
1212
</div>
1313

1414
<div className="gitmem-hero">

0 commit comments

Comments
 (0)