Skip to content

Commit 7cee7be

Browse files
brabojclaude
andcommitted
fix: ensure content directory exists in build workflow too
Same fix as deploy.yml — mkdir -p before symlink creation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d13cc1e commit 7cee7be

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
run: npm ci
2525

2626
- name: Create assets symlink
27-
working-directory: astro-site/src/content
28-
run: ln -s ../../../assets assets
27+
run: mkdir -p astro-site/src/content && ln -s ../../../assets astro-site/src/content/assets
2928

3029
- name: Build site
3130
working-directory: astro-site

0 commit comments

Comments
 (0)