Skip to content

Commit

Permalink
Fix error in render-book.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zander-prinsloo committed Aug 23, 2023
1 parent cec635a commit f76b195
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/render-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs: # This block defines the jobs to be run
with:
r-version: '4.1' # R version used

- name: Install Quarto # This step installs Quarto
- name: Install Quarto
run: |
install.packages('remotes')
remotes::install_github('quarto-dev/quarto-cli')
Rscript -e "install.packages('remotes')"
Rscript -e "remotes::install_github('quarto-dev/quarto-cli')"
- name: Render Quarto Book # This step renders the Quarto book
run: quarto render . # all quarto files in root directory
Expand Down
2 changes: 1 addition & 1 deletion intro.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if (!("emo" %in% ipkg)){

<!-- ::: -->

You need to ensure that the `bookdown` package is installed in your local computer
You need to make sure that the `bookdown` package is installed in your local computer

```{r eval=FALSE}
install.packages("bookdown")
Expand Down

0 comments on commit f76b195

Please sign in to comment.