Skip to content

Commit 332aa5f

Browse files
committed
Fix artifact path and add directory listing in workflow
Corrects artifact path in the unzip step to prevent potential issues. Adds a step to list the contents of the
1 parent 3028c9b commit 332aa5f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-docs.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ jobs:
7979
run: ls -l
8080

8181
- name: Unzip artifact
82-
run: unzip -O UTF-8 -qq "artifacts/${{ env.ARTIFACT }}" -d dir
82+
run: unzip -O UTF-8 -qq "${{ env.ARTIFACT }}" -d dir
83+
84+
- name: List artifacts directory (deploy step)
85+
run: ls -l dir
8386

8487
- name: Setup Pages
8588
uses: actions/configure-pages@v4

0 commit comments

Comments
 (0)