-
Notifications
You must be signed in to change notification settings - Fork 28
Fix docbuild action #495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docbuild action #495
Conversation
WalkthroughThe changes update two GitHub Actions configurations. One update introduces a new step to render a Quarto project via a bash command in the documentation build workflow. The other update upgrades multiple GitHub Actions versions used for configuring pages, uploading artifacts, deploying pages, and releasing documentation. These adjustments affect the build and deploy processes for documentation without altering the core functionality. Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant Workflow as GitHub Workflow
participant API as API Docs Step
participant Quarto as Quarto Project Step
participant Deploy as Deployment Step
Dev->>Workflow: Push commit to repo
Workflow->>API: Execute API documentation script
API-->>Workflow: API docs rendered
Workflow->>Quarto: Run "quarto render docs"
Quarto-->>Workflow: Quarto docs rendered
Workflow->>Deploy: Deploy updated documentation (using upgraded actions)
Deploy-->>Workflow: Deployment complete
Suggested labels
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🔇 Additional comments (5)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Description
Part 2 to #494. Trying to add explicit quarto project render to custom build doc action. Apparently the build master docs action triggered on the quarto publish command, but since build stable docs doesn't have this the project is not getting rendered.
Checklist
I have (if applicable):
Summary by CodeRabbit