Skip to content

Commit

Permalink
update babel installation command
Browse files Browse the repository at this point in the history
  • Loading branch information
RealRichi3 committed May 8, 2024
1 parent 3860a41 commit 0224aa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
sudo apt-get update
sudo apt-get install r-base
sudo apt-get install r-base-core
- name: Create writable directory
run: mkdir -p $HOME/my_R_library

- name: Install pak
run: Rscript -e 'install.packages("pak", repos = "https://cloud.r-project.org", lib = "$HOME/my_R_library")'
run: Rscript -e 'install.packages("pak", repos = "https://cloud.r-project.org", lib = "./my_R_library")'

- name: Use pak to install other packages
run: Rscript -e 'pak::pkg_install("babelquarto", lib = "$HOME/my_R_library")'
run: Rscript -e 'pak::pkg_install("babelquarto", lib = "./my_R_library")'

- name: Build book
run: |
Expand Down

0 comments on commit 0224aa3

Please sign in to comment.