fix: ensure bizard-skill.zip is included in gh-pages deployment - #296
Merged
Conversation
Agent-Logs-Url: https://github.com/openbiox/Bizard/sessions/506f0e2c-501c-4472-aade-bcf3155872b3 Co-authored-by: ShixiangWang <25057508+ShixiangWang@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
ShixiangWang
May 7, 2026 22:46
View session
Contributor
✅ QMD Format CheckNo new QMD tutorial files to check.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
bizard-skill.zipwas never reliably landing in the gh-pages branch because the zip was injected into_site/afterbabelquarto::render_website()— outside Quarto's render pipeline.quarto publish gh-pages --no-rendercopies the render output but doesn't guarantee inclusion of post-render manual additions.Changes
_quarto.yml— addbizard-skill.ziptoresourcesso Quarto copies it to_site/as a first-class render artifactquarto-publish.yml— move zip generation to beforebabelquarto::render_website(); output to project root (./bizard-skill.zip) instead of_site/quarto-publish-update-cache.yml— same zip generation step added before babelquarto.gitignore— ignorebizard-skill.zip(generated file, not for source control)Why this works
babelquarto::render_website()copies the entire project root into a temp dir before rendering. Quarto processesresourcesduring render, copyingbizard-skill.zip→_site/. babelquarto then copies_site/back to the workspace.quarto publish --no-renderdeploys this properly-rendered_site/including the zip.