ci: fix docs build by sourcing quarto R package from quarto-dev/quarto-r#143
Draft
d-morrison wants to merge 1 commit into
Draft
ci: fix docs build by sourcing quarto R package from quarto-dev/quarto-r#143d-morrison wants to merge 1 commit into
d-morrison wants to merge 1 commit into
Conversation
The docs workflow listed `quarto-dev/quarto` as an extra-package, but that GitHub repo is the Quarto CLI monorepo (no R package at its root) — pak fails with 'Can't find R package in GitHub repo quarto-dev/quarto' and the bogus remote conflicts with the CRAN `quarto` required by the package and altdoc. The R `quarto` package now lives at quarto-dev/quarto-r; repoint to it so dependency resolution succeeds. The Quarto CLI is still installed separately by the 'Set up Quarto' step.
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
Contributor
|
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
The
docsworkflow listsquarto-dev/quartoas an Rextra-package, but that GitHub repo is the Quarto CLI monorepo — it has no R package at its root.pakdependency resolution fails with:The bogus GitHub remote also conflicts with the CRAN
quartopackage required by the package itself (Config/Needs/website: quarto) and by altdoc.Fix
The R
quartopackage now lives atquarto-dev/quarto-r(thequarto-dev/quartorepo became the CLI monorepo). Repoint theextra-packagesentry there so dependency resolution succeeds while preserving the original intent of sourcing the devquartoR package from GitHub. The Quarto CLI is still installed separately by the "Set up Quarto" step (quarto-dev/quarto-actions/setup@v2).Why a separate PR
Split out of #133 (reviewer-request handling) since this CI fix is unrelated to that change. Verified working: the
docsbuild succeeded and deployed a PR preview when this fix was temporarily applied on #133.Generated by Claude Code