pkgdown #7784
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 */6 * * *' | |
name: pkgdown | |
jobs: | |
pkgdown: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Credentials | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Emanuele Guidotti" | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- name: Install libcurl | |
run: sudo apt-get install libcurl4-openssl-dev | |
- name: Install FriBidi | |
run: sudo apt-get install -y libfribidi-dev | |
- name: Install HarfBuzz | |
run: sudo apt-get install -y libharfbuzz-dev | |
- name: Install dependencies | |
run: | | |
install.packages("DT") | |
install.packages("remotes") | |
remotes::install_version("pkgdown", version = "1.6.1") | |
remotes::install_deps(dependencies = TRUE) | |
shell: Rscript {0} | |
- name: Install package | |
run: R CMD INSTALL . | |
- name: Deploy package | |
run: pkgdown::deploy_to_branch(new_process = FALSE, clean = TRUE) | |
shell: Rscript {0} |