From 6d6279206b93ea5e2e08d6c41a2ee7fbe72f1ddf Mon Sep 17 00:00:00 2001 From: Laurent Gatto Date: Fri, 16 Aug 2024 08:41:31 +0200 Subject: [PATCH] don't build site --- .github/workflows/check-bioc.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-bioc.yml b/.github/workflows/check-bioc.yml index 6c06887..4e75291 100644 --- a/.github/workflows/check-bioc.yml +++ b/.github/workflows/check-bioc.yml @@ -259,14 +259,14 @@ jobs: if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux' run: R CMD INSTALL . - - name: Build pkgdown site - if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux' - run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) - shell: Rscript {0} - ## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE) - ## at least one locally before this will work. This creates the gh-pages - ## branch (erasing anything you haven't version controlled!) and - ## makes the git history recognizable by pkgdown. + ## - name: Build pkgdown site + ## if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux' + ## run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + ## shell: Rscript {0} + ## ## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE) + ## ## at least one locally before this will work. This creates the gh-pages + ## ## branch (erasing anything you haven't version controlled!) and + ## ## makes the git history recognizable by pkgdown. - name: Install deploy dependencies if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'