Skip to content

Commit faa7eb9

Browse files
committed
Fix artifact path in build-docs workflow
Updated the unzip command to include the correct artifact path, ensuring proper resolution during the workflow execution. This fixes potential issues with locating the artifact for indexing.
1 parent 63ab20a commit faa7eb9

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
@@ -94,7 +94,7 @@ jobs:
9494
name: docs
9595
- name: Unzip artifact
9696
run: |
97-
unzip -O UTF-8 -qq '${{ env.ALGOLIA_ARTIFACT }}' -d algolia-indexes
97+
unzip -O UTF-8 -qq 'artifacts/${{ env.ALGOLIA_ARTIFACT }}' -d algolia-indexes
9898
env algolia-key='${{env.ALGOLIA_KEY}}' java -jar /opt/builder/help-publication-agent.jar \
9999
update-index \
100100
--application-name '${{env.ALGOLIA_APP_NAME}}' \

0 commit comments

Comments
 (0)