Skip to content

Latest commit

 

History

History

examples

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 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.