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:
389389 runs-on : windows-latest
390390 needs : [configure, make-installer-win]
391391 steps :
392- - uses : actions/download-artifact@v4
392+ - name : " Download Windows Zip"
393+ uses : actions/download-artifact@v4
393394 with :
394395 name : Windows Zip
395396 path : .
396- - run : |
397+
398+ - name : " Extract Windows Zip"
399+ run : |
397400 tar -xf quarto-${{needs.configure.outputs.version}}-win.zip
398401
399402 # Check for share/preview/quarto-preview.js
@@ -405,15 +408,17 @@ jobs:
405408 exit 1
406409 fi
407410
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"
409413
410- - run : |
411- tar -tzvf quarto-${{needs.configure.outputs.version}}-win.zip
414+ - name : " Show Directory Listing and PATH "
415+ run : |
412416 ls -lR
413417 echo $PATH
414418 shell : bash
415419
416- - run : |
420+ - name : " Run Quarto Commands"
421+ run : |
417422 quarto check
418423 quarto --paths
419424 quarto --version
You can’t perform that action at this time.
0 commit comments