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.
This re-adds the alignment vignette. At present, the RData result object is build by running the end-to-end qmd while docker image creation, copying that file then to a (publicly accessible) folder within the docker image. This workaround was needed, because it seems that it's not possible to save data outside the working directory in which quarto runs. Also, the GHA that runs
pkgdown
does not use /home/rstudio as working directory, and hence the RData (if saved within e.g. /home/rstudio/vignettes) can not be found.Another workaround that was needed to enable
pkgdown
withquarto
was to change the location of the R temporary directory and set it to a folder that is in the same shared folder as the working directory the GHA uses (i.e. under__w/
).We should/could think of a cleaner solution, but this works for now.