From f61833829fee7398302c3d8f573af8f31dac4187 Mon Sep 17 00:00:00 2001 From: Giorgio Alfredo Spedicato Date: Mon, 7 Oct 2024 22:38:49 +0200 Subject: [PATCH] fix: " vs ' --- .github/workflows/pkgdown.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index cc62162..370c597 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -36,10 +36,10 @@ jobs: needs: website - name: Install TinyTeX - run: Rscript -e 'tinytex::install_tinytex()' + run: Rscript -e "tinytex::install_tinytex()" - name: Build site - run: Rscript -e 'pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)' + run: Rscript -e "pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)" shell: Rscript {0} - name: Deploy to GitHub pages 🚀