diff --git a/.github/workflows/render-README.yml b/.github/workflows/render-README.yml index 4cc8f2a..4631589 100644 --- a/.github/workflows/render-README.yml +++ b/.github/workflows/render-README.yml @@ -1,9 +1,9 @@ name: Render README.qmd to Markdown on: - push: # Trigger on every push to the repository + push: branches: - - '**' # Tracks all branches; restrict if needed + - main jobs: render: @@ -19,6 +19,6 @@ jobs: - name: Find and Render README.qmd Files run: | find . -name "README.qmd" | while read qmd_file; do - quarto render "$qmd_file" --to markdown + quarto render "$qmd_file" --to html done