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:
446446 if : ${{ inputs.publish-release }}
447447 uses : ./.github/workflows/actions/prevent-rerun
448448
449- - uses : actions/download-artifact@v4
449+ - name : " Download Windows Zip"
450+ uses : actions/download-artifact@v4
450451 with :
451452 name : Windows Zip
452453 path : .
453- - run : |
454+
455+ - name : " Extract Windows Zip"
456+ run : |
454457 tar -xf quarto-${{needs.configure.outputs.version}}-win.zip
455458
456459 # Check for share/preview/quarto-preview.js
@@ -462,15 +465,17 @@ jobs:
462465 exit 1
463466 fi
464467
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"
466470
467- - run : |
468- tar -tzvf quarto-${{needs.configure.outputs.version}}-win.zip
471+ - name : " Show Directory Listing and PATH "
472+ run : |
469473 ls -lR
470474 echo $PATH
471475 shell : bash
472476
473- - run : |
477+ - name : " Run Quarto Commands"
478+ run : |
474479 quarto check
475480 quarto --paths
476481 quarto --version
You can’t perform that action at this time.
0 commit comments