2020-06-29 15:39:08 +00:00
|
|
|
docker:
|
2021-12-23 17:03:23 +00:00
|
|
|
- image: node:14
|
2020-06-29 15:39:08 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run:
|
|
|
|
name: Push content to Algolia Index
|
|
|
|
command: |
|
|
|
|
if [ "$CIRCLE_REPOSITORY_URL" != "git@github.com:hashicorp/vault.git" ]; then
|
|
|
|
echo "Not Vault OSS Repo, not indexing Algolia"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
cd website/
|
2021-12-23 17:03:23 +00:00
|
|
|
npm install -g npm@latest
|
2020-06-29 15:39:08 +00:00
|
|
|
npm install
|
|
|
|
node scripts/index_search_content.js
|