Fix publish workflow while preserving all-format rendering - #64
Merged
Conversation
Closed
Agent-Logs-Url: https://github.com/d-morrison/qwt/sessions/e20f4aa5-95ef-4cfe-bc81-25ef5715840e Co-authored-by: d-morrison <2474437+d-morrison@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix publish workflow
Constrain publish workflow to HTML-only render
May 13, 2026
d-morrison
requested changes
May 13, 2026
Agent-Logs-Url: https://github.com/d-morrison/qwt/sessions/b164cb45-fa8c-4a80-85e3-df814b354f49 Co-authored-by: d-morrison <2474437+d-morrison@users.noreply.github.com>
Copilot
AI
changed the title
Constrain publish workflow to HTML-only render
Fix publish workflow while preserving all-format rendering
May 13, 2026
d-morrison
marked this pull request as ready for review
May 13, 2026 03:47
Contributor
There was a problem hiding this comment.
Pull request overview
Fixes the GitHub Actions Quarto Publish workflow so it can publish successfully while preserving full-project rendering across all configured formats, and updates the workflow setup to match the approach used in d-morrison/rme.
Changes:
- Updated repository checkout to include Git submodules (
submodules: recursive). - Switched Quarto setup action from a versioned release to
@HEADand passedGH_TOKENvia step env.
| steps: | ||
| - name: Check out repository | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v5 |
Comment on lines
21
to
26
| - name: Set up Quarto | ||
| uses: quarto-dev/quarto-actions/setup@v2 | ||
| uses: quarto-dev/quarto-actions/setup@HEAD | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| tinytex: true |
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.
The publish pipeline was failing in
Quarto Publish. This update keeps full-project rendering (including all configured formats) and aligns workflow setup with the working approach used ind-morrison/rme.Scope of change
.github/workflows/publish.ymlto use recursive submodules.quarto-dev/quarto-actions/setup@HEADand passGH_TOKEN.Workflow behavior
Quarto Publishnow continues to render all configured formats.rmeto improve reliability before render/deploy.Patch