Skip to content

Commit

Permalink
Update the _pkgdown workflow: add libraries for latex equations in vi…
Browse files Browse the repository at this point in the history
…gnettes
  • Loading branch information
aursiber committed Aug 28, 2024
1 parent 6bbf385 commit 8834fa8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,20 @@ jobs:
needs: website

- uses: r-lib/actions/setup-tinytex@v2

- name: Install libraries for Linux
if: runner.os == 'Linux'
run: |
sudo apt-get install libcurl4-openssl-dev texlive
- name: Install dependencies
run: |
install.packages("remotes")
remotes::install_deps(dependencies = TRUE)
remotes::install_cran("rcmdcheck")
tinytex::tlmgr_install("amscls")
tinytex::parse_install(text = "! LaTeX Error: File `ae.sty' not found.")
shell: Rscript {0}

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
Expand Down

0 comments on commit 8834fa8

Please sign in to comment.