Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 495 Bytes

File metadata and controls

14 lines (12 loc) · 495 Bytes

Quarto Actions: Publishing without rendering

By default, the quarto-actions/publish@v2 action will re-render your entire project before publishing. However, if you store the rendered project in version control, you don't need the GitHub action to re-render the project. In that case, add the option render: false to the publish action:

- name: Publish to GitHub Pages (and render)
  uses: quarto-dev/quarto-actions/publish@v2
  with:
    target: gh-pages
    render: false