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 @@ -389,11 +389,14 @@ jobs:
389
389
runs-on : windows-latest
390
390
needs : [configure, make-installer-win]
391
391
steps :
392
- - uses : actions/download-artifact@v4
392
+ - name : " Download Windows Zip"
393
+ uses : actions/download-artifact@v4
393
394
with :
394
395
name : Windows Zip
395
396
path : .
396
- - run : |
397
+
398
+ - name : " Extract Windows Zip"
399
+ run : |
397
400
tar -xf quarto-${{needs.configure.outputs.version}}-win.zip
398
401
399
402
# Check for share/preview/quarto-preview.js
@@ -405,15 +408,17 @@ jobs:
405
408
exit 1
406
409
fi
407
410
408
- - run : Add-Content $env:GITHUB_PATH "$env:GITHUB_WORKSPACE\bin"
411
+ - name : " Add bin to PATH"
412
+ run : Add-Content $env:GITHUB_PATH "$env:GITHUB_WORKSPACE\bin"
409
413
410
- - run : |
411
- tar -tzvf quarto-${{needs.configure.outputs.version}}-win.zip
414
+ - name : " Show Directory Listing and PATH "
415
+ run : |
412
416
ls -lR
413
417
echo $PATH
414
418
shell : bash
415
419
416
- - run : |
420
+ - name : " Run Quarto Commands"
421
+ run : |
417
422
quarto check
418
423
quarto --paths
419
424
quarto --version
You can’t perform that action at this time.
0 commit comments