Skip to content

Commit

Permalink
Update render-README.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NicK4rT authored Nov 23, 2024
1 parent d426c84 commit 477a6f7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/render-README.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Render README.qmd to Markdown
on:
push: # Trigger on every push to the repository
branches:
- '**' # Tracks all branches; you can restrict this to main if needed
- '**' # Tracks all branches; restrict if needed

jobs:
render:
Expand All @@ -16,6 +16,12 @@ jobs:
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Install R and Required Packages
run: |
sudo apt-get update
sudo apt-get install -y r-base
Rscript -e 'install.packages(c("knitr", "rmarkdown"), repos = "https://cloud.r-project.org/")'
- name: Find and Render README.qmd Files
run: |
# Find all README.qmd files and render them to Markdown
Expand Down

0 comments on commit 477a6f7

Please sign in to comment.