Merge pull request #1062 from o1-labs/2024-10-45930-fixes #648
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# algolia-search.yml | |
# | |
# Create a search index for Algolia Search when code is pushed to main. | |
# | |
name: Algolia-Search | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
wait-for-vercel: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sleep 300s | |
shell: bash | |
algolia-search: | |
runs-on: ubuntu-latest | |
needs: [wait-for-vercel] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run algolia/docsearch-scraper | |
run: | | |
docker pull algolia/docsearch-scraper | |
docker run \ | |
-e ALGOLIA_APP_ID=${{ secrets.ALGOLIA_APP_ID }} \ | |
-e API_KEY=${{ secrets.ALGOLIA_ADMIN_API_KEY }} \ | |
-e "CONFIG=$(cat ./algolia-config.json | jq -r tostring)" \ | |
algolia/docsearch-scraper |