DocSearch Scraper #1181
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
name: DocSearch Scraper | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run daily at 00:00 UTC | |
- cron: "0 0 * * *" | |
jobs: | |
scrape: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get DocSearch Config | |
id: docsearch-config | |
run: echo "::set-output name=json::$(cat docsearch.json | jq -r tostring)" | |
- name: Run DocSearch Scraper | |
run: docker run -e TZ -e API_KEY -e APPLICATION_ID -e CONFIG algolia/docsearch-scraper:latest | |
env: | |
TZ: UTC | |
API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
APPLICATION_ID: "2O5VWTLFC8" | |
CONFIG: ${{ steps.docsearch-config.outputs.json }} |