Skip to content

Commit dd13e4a

Browse files
committed
Deploy the sidereus7 submodule at /sidereus7/
The submodule was registered but never checked out in CI, so its content was silently absent from every deploy. Check out submodules during the Pages build, and move the submodule's path from sidereus7.github.io to sidereus7 so Jekyll copies it straight to the URL path we want. Renaming only the path (not the submodule name) leaves .git/modules alone, so existing clones just need `git submodule sync`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01TyCX1VdE3hpgadJbhPhFCH
1 parent 32d601d commit dd13e4a

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/jekyll-gh-pages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v4
31+
with:
32+
# Pull in the sidereus7 submodule; Jekyll copies it to /sidereus7/.
33+
submodules: recursive
3134
- name: Setup Pages
3235
uses: actions/configure-pages@v5
3336
- name: Build with Jekyll

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "sidereus7.github.io"]
2-
path = sidereus7.github.io
2+
path = sidereus7
33
url = https://github.com/ddrcoder/sidereus7.github.io

0 commit comments

Comments
 (0)