Skip to content

Commit 1a05d2d

Browse files
committed
update README for install-quarto
1 parent 43be29e commit 1a05d2d

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

install-quarto/README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This action will:
1010
* On Windows, it will for now use **Scoop** (https://github.com/ScoopInstaller/Scoop) to install Quarto, as we have still an issue with Quarto MSI on Github Action (https://github.com/quarto-dev/quarto-cli/issues/108). (**Scoop** will be installed on the runner by the action)
1111
* On Linux and MacOS, it will use **gh** CLI to download the last available bundle (no `version` specified as input). If you don't have **gh** on your Github Action runner, you can specify a fix `version` to directly download from a URL using `wget`.
1212

13-
Inputs available
13+
### Inputs available
1414

1515
* `version` - _optional_. If provided, the specific quarto version will be installed. Ex: `version: 0.3.71`
1616

@@ -21,7 +21,16 @@ Inputs available
2121
version: 0.3.71
2222
```
2323
24-
Example on different OS:
24+
* `tinytex` - _optional_. Set this to `tinytex: true` to let [Quarto installs TinyTeX](https://quarto.org/docs/output-formats/pdf-engine.html#installing-tex) using `quarto tools install tinytex`. **Only available on `main` branch**
25+
26+
```yaml
27+
steps:
28+
- uses: quarto-dev/quarto-actions/install-quarto@main
29+
with:
30+
tinytex: true
31+
```
32+
33+
### Example on different OS
2534

2635
```yaml
2736
name: quarto-setup

0 commit comments

Comments
 (0)