Skip to content

Files

Latest commit

6e5c735 · Feb 19, 2025

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 19, 2025
Jan 8, 2024
Jun 22, 2022
Jan 9, 2023
Aug 25, 2022
Aug 25, 2022
Aug 25, 2022
Aug 25, 2022
Sep 8, 2023
Apr 26, 2024

README.md

Using Quarto Actions: Examples

Repositories using Quarto 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 checkout step.

          - name: Check out repository
            uses: actions/checkout@v4
            with:
              lfs: true # needed when using lfs for image storage

    See the checkout action documentation for details.