We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8ae9e4 commit e81e8e1Copy full SHA for e81e8e1
1 file changed
.github/workflows/100_render.yml
@@ -51,7 +51,7 @@ jobs:
51
run: Rscript -e 'install.packages(c("rmarkdown", "rlang", "lubridate"))'
52
53
- name: create output file name, then use in next chunk
54
- run: echo '${{ github.event.inputs.selected_filename }}.md'
+ run: echo 'Create file: ${{ github.event.inputs.selected_filename }}.md'
55
56
- name: Render Quarto document
57
run: |
@@ -60,6 +60,12 @@ jobs:
60
#quarto render 250_quarto_knitr_SCSS_NOTES.qmd --to gfm --output 250_quarto_knitr_SCSS_NOTES.md
61
#quarto render README.Rmd --to gfm --output README.md
62
63
+ - name: Render pdf
64
+ run: |
65
+ echo "Begin pdf"
66
+ quarto render ${{ github.event.inputs.selected_filename }} \
67
+ --to pdf --output jobs
68
+
69
- name: Commit rendered file
70
71
git config --global user.name "github-actions[bot]"
0 commit comments