Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,13 @@ jobs:
echo "$deploy_output"
exit 1
fi

- name: Reindex with Typesense docsearch-scraper
run: |
docker run \
-e "TYPESENSE_API_KEY=${{ secrets.TYPESENSE_API_KEY }}" \
-e "TYPESENSE_HOST=${{ secrets.TYPESENSE_HOST }}" \
-e "TYPESENSE_PORT=443" \
-e "TYPESENSE_PROTOCOL=https" \
-e "CONFIG=$(cat docs/typesense.config.json | jq -r tostring)" \
typesense/docsearch-scraper:0.11.0
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"docs": "yarn preprocess && yarn typedoc && docusaurus start --host ${HOST:-localhost}",
"dev": "HOST=0.0.0.0 ENV=dev SHOW_PROTOCOL_SPECS=true yarn docs",
"dev:local": "ENV=dev SHOW_PROTOCOL_SPECS=true yarn docs",
"build": "yarn preprocess && yarn typedoc && yarn preprocess:move && docusaurus build",
"build": "yarn clean && yarn preprocess && yarn typedoc && yarn preprocess:move && docusaurus build",
"swizzle": "docusaurus swizzle",
"clean": "./scripts/clean.sh",
"serve": "docusaurus serve",
Expand Down

This file was deleted.

Loading