Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Aug 16, 2024
1 parent 9955c1e commit 7636798
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,21 @@ jobs:
## clean: false
## branch: gh-pages
## folder: docs
- name: Deploy package
#if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
if: env.run_pkgdown == 'true' && runner.os == 'Linux'
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git config --global --add safe.directory /__w/depmap/depmap
Rscript -e "pkgdown::deploy_to_branch(new_process = FALSE)"
shell: bash {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: Upload check results
if: failure()
Expand Down

0 comments on commit 7636798

Please sign in to comment.