133 documentation is not deploying to GitHub pages - #138
Merged
devsetgo merged 3 commits intoMay 24, 2026
Conversation
…aforms pattern pythonpublish.yml was trying to do everything inline (build, publish, deploy docs) and failing. The working pattern used in pydantic-schemaforms separates concerns into two workflows: pythonpublish.yml (slimmed down): - deploy: build sdist+wheel, publish to PyPI - trigger-docs: dispatch deploy-docs.yml after deploy succeeds, passing version, checkout_ref, and aliases as inputs. Skips dispatch gracefully on workflow_dispatch (no release tag). deploy-docs.yml (new): - Triggered via workflow_dispatch only (dispatched by trigger-docs) - Checks out the specific release tag - Installs deps, prepares docs, runs deploy_docs.py with --ignore-remote-status and --push - Sets 'stable' as the default alias - Publishes to GitHub Pages via configure-pages / upload-pages-artifact / deploy-pages actions scripts/deploy_docs.py: add --branch argument forwarded to mike deploy, allowing the workflow to explicitly target the gh-pages branch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
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.



Addresses the issue where the 133 documentation was not deploying to GitHub pages as expected. The changes made in this pull request include:
deploy-docs.ymlto handle the deployment of versioned documentation to GitHub pages.workflow_dispatchevent and requires inputs for the documentation version label, Git reference to build docs from, and optional aliases.miketool.pythonpublish.ymlworkflow to adjust permissions and steps for deploying documentation.trigger-docswas added to trigger the documentation deployment based on release events.coverage.xmlandreport.xml.By introducing this new workflow and making necessary adjustments, the documentation deployment process for the 133 project will be streamlined and ensure that the documentation is successfully deployed to GitHub pages.