Skip to content

Commit 3ab775c

Browse files
committed
correct way to call action in test
1 parent 4aad30c commit 3ab775c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ on:
1414
required: true
1515
default: 'release'
1616
type: string
17+
tinytex:
18+
description: 'If true, install TinyTex, required for PDF rendering'
19+
required: false
20+
default: 'true'
1721

1822
jobs:
1923
quarto-setup:
@@ -34,9 +38,11 @@ jobs:
3438
- uses: actions/checkout@v4
3539

3640
- uses: ./setup
41+
env:
42+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3743
with:
3844
version: ${{ inputs.version || 'release' }}
39-
token: ${{ secrets.GITHUB_TOKEN }}
45+
tinytex: ${{ inputs.tinytex == 'true'}}
4046

4147
- run: quarto --version
4248

0 commit comments

Comments
 (0)