File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -446,11 +446,14 @@ jobs:
446
446
if : ${{ inputs.publish-release }}
447
447
uses : ./.github/workflows/actions/prevent-rerun
448
448
449
- - uses : actions/download-artifact@v4
449
+ - name : " Download Windows Zip"
450
+ uses : actions/download-artifact@v4
450
451
with :
451
452
name : Windows Zip
452
453
path : .
453
- - run : |
454
+
455
+ - name : " Extract Windows Zip"
456
+ run : |
454
457
tar -xf quarto-${{needs.configure.outputs.version}}-win.zip
455
458
456
459
# Check for share/preview/quarto-preview.js
@@ -462,15 +465,17 @@ jobs:
462
465
exit 1
463
466
fi
464
467
465
- - run : Add-Content $env:GITHUB_PATH "$env:GITHUB_WORKSPACE\bin"
468
+ - name : " Add bin to PATH"
469
+ run : Add-Content $env:GITHUB_PATH "$env:GITHUB_WORKSPACE\bin"
466
470
467
- - run : |
468
- tar -tzvf quarto-${{needs.configure.outputs.version}}-win.zip
471
+ - name : " Show Directory Listing and PATH "
472
+ run : |
469
473
ls -lR
470
474
echo $PATH
471
475
shell : bash
472
476
473
- - run : |
477
+ - name : " Run Quarto Commands"
478
+ run : |
474
479
quarto check
475
480
quarto --paths
476
481
quarto --version
You can’t perform that action at this time.
0 commit comments