2020-06-24 02:56:29 +00:00
|
|
|
docker:
|
2020-06-25 01:16:15 +00:00
|
|
|
- image: node:12
|
2020-06-18 16:50:53 +00:00
|
|
|
steps:
|
2020-06-24 02:56:29 +00:00
|
|
|
- checkout
|
2020-06-18 16:50:53 +00:00
|
|
|
- run:
|
|
|
|
name: Push content to Algolia Index
|
|
|
|
command: |
|
2020-06-24 19:28:57 +00:00
|
|
|
if [ "$CIRCLE_REPOSITORY_URL" != "git@github.com:hashicorp/nomad.git" ]; then
|
|
|
|
echo "Not Nomad OSS Repo, not indexing Algolia"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2020-06-18 16:50:53 +00:00
|
|
|
cd website/
|
2020-06-24 19:28:57 +00:00
|
|
|
npm install
|
2020-06-18 16:50:53 +00:00
|
|
|
node scripts/index_search_content.js
|