Skip to content

Commit a9344ee

Browse files
committed
Fix artifact path in docs build workflow
Corrected the path used in the unzip step to remove unnecessary "dir/" prefix. This ensures the workflow processes the artifact location properly.
1 parent d30a7fa commit a9344ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112

113113
- name: Unzip artifact
114114
run: |
115-
unzip -O UTF-8 -qq "dir/${{ env.ALGOLIA_ARTIFACT }}" -d algolia-indexes
115+
unzip -O UTF-8 -qq "${{ env.ALGOLIA_ARTIFACT }}" -d algolia-indexes
116116
117117
- name: Publish to Algolia Index
118118
run: |

0 commit comments

Comments
 (0)