Skip to content

Commit

Permalink
Update render-README.qmd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NicK4rT authored Nov 13, 2024
1 parent 9b16a9e commit 07e7600
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/render-README.qmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ jobs:
sudo dpkg -i quarto-1.2.269-linux-amd64.deb
- name: Install R and Required Packages
env:
R_LIBS_USER: ~/R/library # Define a writable library path
run: |
sudo apt-get update
sudo apt-get install -y r-base
mkdir -p "$R_LIBS_USER" # Create the library path if it doesn't exist
Rscript -e 'install.packages(c("rmarkdown", "jsonlite"), repos="https://cloud.r-project.org")'
mkdir -p ~/R/library # Ensure the writable library path exists
Rscript -e 'install.packages(c("rmarkdown", "jsonlite"), lib="~/R/library", repos="https://cloud.r-project.org")'
- name: Render README.qmd files to README.md
run: |
Expand Down

0 comments on commit 07e7600

Please sign in to comment.