File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,16 @@ jobs:
2828 strategy :
2929 fail-fast : false
3030 matrix :
31- version : [release, pre-release]
31+ version : [' release', ' pre-release' ]
3232 config :
33- - { os: macos-latest }
34- - { os: macos-13 }
35- - { os: windows-latest }
36- - { os: ubuntu-latest }
37- - { os: ubuntu-22.04-arm }
38- exclude :
39- # Skip matrix versions when using workflow_dispatch
40- - version : ${{ github.event_name == 'workflow_dispatch' && 'release' || '' }}
41- - version : ${{ github.event_name == 'workflow_dispatch' && 'pre-release' || '' }}
33+ # Default config for standard platforms
34+ - os : macos-latest
35+ - os : macos-13
36+ - os : windows-latest
37+ - os : ubuntu-latest
38+ # Special config for ARM
39+ - os : ubuntu-22.04-arm
40+ tinytex : false
4241
4342 steps :
4443 - uses : actions/checkout@v4
4847 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4948 with :
5049 version : ${{ inputs.version || matrix.version }}
51- tinytex : ${{ inputs.tinytex || true }}
50+ tinytex : ${{ inputs.tinytex || (matrix.config.tinytex != null && matrix.config.tinytex || true) }}
5251
5352 - run : quarto --version
5453
You can’t perform that action at this time.
0 commit comments