Skip to content

Indexer

Indexer #156

Workflow file for this run

name: Indexer
on:
workflow_run:
workflows: ["Publish"]
types:
- completed
jobs:
indexing:
runs-on: ubuntu-latest
steps:
- name: check out code 🛎
uses: actions/checkout@v2
# when scraping the site, inject secrets as environment variables
# then pass their values into the Docker container using "-e" syntax
# and inject config.json contents as another variable
- name: scrape the site 🧽
env:
APPLICATION_ID: ${{ secrets.ALGOLIA_APP_ID }}
API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
run: |
docker run \
-e APPLICATION_ID -e API_KEY \
-e CONFIG="$(cat config.json)" \
algolia/docsearch-scraper:v1.6.0