Quarto publish action with resources #7800
Unanswered
JosiahParry
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Freeze option has nothing to do with resources, it's only regarding computations. Could you share a small self-contained "working" (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```

The end.
```` Footnotes
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
When running
quarto render
locally with a yaml header like so:The html/lib gets carried over into
_site/
. However, when the quarto publish action is ran, the resources do not make it into thegh-pages
branch. Is this because of the use of freeze? How can I get the resources to be included in the GHA?Beta Was this translation helpful? Give feedback.
All reactions