Examples
Using Quarto Actions: Examples
- Basics
- Freeze
- Dependencies
- Render with no publish
- Rendering and publishing a non-top-level project
- Publishing a single format, publishing without rendering
- Publishing a single format
- Publishing to other services
Repositories using Quarto actions
Earthdata Cloud Cookbook (source, workflow file) This book contains
.mdand.ipynbfiles, and is built with Quarto and Python in GHA, and deployed to Github Pages.R Manuals Quarto website (source, workflow file) This project uses a workflow to build several books with R and Quarto and organizes them in a website deployed to Github pages.
Pathology Atlas (source, workflow file) This multilingual website is rendered in two versions and deployed using Github Actions.
FAQ
My project uses git lfs storage; how should I adapt the action?
If your project uses git lfs storage, you must opt-in to git lfs during the
checkoutstep.- name: Check out repository uses: actions/checkout@v6 with: lfs: true # needed when using lfs for image storageSee the checkout action documentation for details.