File tree 1 file changed +15
-10
lines changed
1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change 17
17
tinytex :
18
18
description : ' If true, install TinyTex, required for PDF rendering'
19
19
required : false
20
- default : ' true '
20
+ default : ' false '
21
21
22
22
jobs :
23
23
quarto-setup :
24
24
runs-on : ${{ matrix.config.os }}
25
- name : ${{ matrix.config.os }}
25
+ name : ${{ matrix.config.os }} (${{ inputs.version || matrix.version }})
26
26
27
27
strategy :
28
28
fail-fast : false
29
29
matrix :
30
+ version : ['release', 'pre-release']
30
31
config :
31
- - { os: macos-latest }
32
- - { os: macos-13 }
33
- - { os: windows-latest }
34
- - { os: ubuntu-latest }
35
- - { os: ubuntu-22.04-arm }
32
+ # Default config for standard platforms
33
+ - os : macos-latest
34
+ - os : macos-13
35
+ - os : windows-latest
36
+ tinytex : ' false'
37
+ - os : ubuntu-latest
38
+ # Special config for ARM
39
+ - os : ubuntu-22.04-arm
40
+ tinytex : ' false'
36
41
37
42
steps :
38
43
- uses : actions/checkout@v4
41
46
env :
42
47
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
48
with :
44
- version : ${{ inputs.version || 'release' }}
45
- tinytex : ${{ inputs.tinytex == 'true'}}
49
+ version : ${{ inputs.version || matrix.version }}
50
+ tinytex : ${{ inputs.tinytex || matrix.config.tinytex || 'true' }}
46
51
47
52
- run : quarto --version
48
53
51
56
52
57
- run : where.exe quarto
53
58
if : ${{ runner.os == 'Windows' }}
54
-
59
+
You can’t perform that action at this time.
0 commit comments