Skip to content

Commit 08205af

Browse files
committed
Fix incorrect argument name in build-docs workflow
Replaces `--productVersion` with `--version` in the Algolia indexing step to align with the correct argument naming convention. Ensures compatibility and prevents potential indexing issues during workflow execution.
1 parent 0ae969f commit 08205af

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
@@ -126,6 +126,6 @@ jobs:
126126
--application-name '${{env.ALGOLIA_APP_NAME}}' \
127127
--index-name '${{env.ALGOLIA_INDEX_NAME}}' \
128128
--product '${{env.CONFIG_JSON_PRODUCT}}' \
129-
--productVersion '${{env.CONFIG_JSON_VERSION}}' \
129+
--version '${{env.CONFIG_JSON_VERSION}}' \
130130
--index-directory algolia-indexes/
131131
2>&1 | tee algolia-update-index-log.txt

0 commit comments

Comments
 (0)