20240930 - update testing workflow #1662
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
# From: https://orchid00.github.io/actions_sandbox/websites-using-pkgdown-bookdown-and-blogdown.html#deploy-bookdown | |
on: | |
push: | |
branches: | |
- testing | |
name: build-pdf | |
jobs: | |
bookdown: | |
name: Render-Book | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 # update | |
- name: Setup R | |
uses: r-lib/actions/setup-r@v2 # update | |
- name: Session info | |
run: Rscript -e 'sessionInfo()' | |
- name: Setup pandoc | |
uses: r-lib/actions/setup-pandoc@v2 # update | |
- name: Install libcurl on Linux | |
if: runner.os == 'Linux' | |
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev | |
- name: Install package dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 # update | |
#- name: Install remote packages | |
# run: | | |
# Rscript -e 'remotes::install_github("DevPsyLab/petersenlab")' | |
- name: Render Book | |
run: Rscript -e 'bookdown::render_book("index.Rmd", output_format = "bookdown::pdf_book")' | |
- uses: actions/upload-artifact@v4 # update | |
with: | |
name: _book | |
path: _book/ |