Fix stable docs not building automatically#321
Merged
jameskermode merged 1 commit intoACEsuit:mainfrom Jan 6, 2026
Merged
Conversation
Uncomment DOCUMENTER_KEY in CI workflow to enable documentation deployment on tags. Without this secret, Documenter.jl cannot push to the gh-pages branch to deploy stable documentation. Note: This fix requires that the DOCUMENTER_KEY secret is properly configured in the repository settings. If not already set up, the maintainer needs to: 1. Generate an SSH key pair 2. Add the public key as a deploy key to the repo (with write access) 3. Add the private key as a secret named DOCUMENTER_KEY Fixes ACEsuit#320 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
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.
Summary
DOCUMENTER_KEYin CI workflow to enable stable documentation deployment on tagsBackground
As of v0.10.x, the stable docs weren't building automatically because the
DOCUMENTER_KEYenvironment variable was commented out in.github/workflows/CI.yml. Without this secret, Documenter.jl cannot push to thegh-pagesbranch when tags are created.Changes
.github/workflows/CI.ymlto passDOCUMENTER_KEYto thejulia-docdeployactionTest plan
Note
If the
DOCUMENTER_KEYsecret isn't configured in repository settings, it will need to be set up:DOCUMENTER_KEYsecretFixes #320
🤖 Generated with Claude Code