Add GitHub wiki content and sync tooling; simplify CI artifact handling#7
Add GitHub wiki content and sync tooling; simplify CI artifact handling#7knoxhack wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 15b8baf9b3
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| fi | ||
|
|
||
| mkdir -p "$wiki_repo" | ||
| cp -f wiki/*.md "$wiki_repo/" |
There was a problem hiding this comment.
Mirror wiki deletions when syncing
The helper is documented as an ongoing wiki sync tool, but this copy step only adds or overwrites files and never removes markdown pages that were deleted or renamed in wiki/. In that scenario, stale pages remain in Echo.wiki and continue to be published, so the wiki can drift from the repo source-of-truth over time. Consider using a delete-aware sync (for example rsync --delete or an explicit cleanup pass) so removals are propagated.
Useful? React with 👍 / 👎.
Motivation
Description
wiki/collection of markdown pages (Home.md,Getting-Started.md,Architecture.md,Addon-Development.md,Build-and-Release.md,Modules-and-Versions.md,Progression-Guide.md,Troubleshooting.md,Lore-and-World-Canon.md) to serve as the source-of-truth for the GitHub Wiki.docs/wiki_publish.mdwith step-by-step instructions for bootstrapping and syncing the Wiki, and updatedREADME.mdto reference the new Wiki publishing guidance.tools/sync_wiki.shto copywiki/*.mdinto a checked-outEcho.wikirepo and print the next git steps..github/workflows/build.ymlto adjust the release/verification and artifact collection steps (changed how./gradlew verifyEchoReleaseand artifact collection are invoked and removed the previous artifact upload/summary steps in favor of the updated collection flow).Testing
buildworkflow. }Codex Task