This repository stores Github Actions around Quarto (https://quarto.org/)
- quarto-dev/quarto-actions/install-quarto - Install Quarto binary
In Examples, you will find some YAML workflow file to serve as template to be reuse as base for your project. We are also sharing some links to real examples Github repositories using Quarto with Github Actions for rendering and deploying documents and projects. If you want to add your repository in the list, we welcome a PR.
This repository is using recommended release management for actions:
- Github releases with tags are used for updates on the actions.
- Semantic versioning is used, with major, minor and possibly patch release.
- Major version (such as
v1
) will always point to the last minor or patch release for this major version. (whenv1.0.2
is out,v1
will point to this update to). This means usingquarto-dev/quarto-actions/install-quarto@v1
in your workflow file will automatically get the updated versions. Usingquarto-dev/quarto-actions/install-quarto@v1.0.2
will pinned a specific release. - Major version change (
v1
tov2
) will often come with possible breaking change, and a workflow would require manual update.
Example:
- uses: quarto-dev/quarto-actions/install-quarto@v1