Skip to content

Commit eddf9e3

Browse files
committed
gha - fix command on Windows
(cherry picked from commit c0d8cc3) # Conflicts: # .github/workflows/create-release.yml
1 parent adcb7f8 commit eddf9e3

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/create-release.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)