We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e48da2 commit 0b1af93Copy full SHA for 0b1af93
.github/workflows/test.yaml
@@ -27,7 +27,7 @@ jobs:
27
strategy:
28
fail-fast: false
29
matrix:
30
- version: ['release', 'pre-release']
+ version: ${{ inputs.version && format('["{0}"]', inputs.version) || fromJSON('["release", "pre-release"]') }}
31
config:
32
# Default config for standard platforms
33
- os: macos-latest
@@ -46,7 +46,7 @@ jobs:
46
env:
47
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
with:
49
- version: ${{ inputs.version || matrix.version }}
+ version: ${{ matrix.version }}
50
tinytex: ${{ inputs.tinytex || matrix.config.tinytex || 'true' }}
51
52
- run: quarto --version
0 commit comments