Skip to content

docs(faq): add msvc lib install troubleshooting on windows #50

docs(faq): add msvc lib install troubleshooting on windows

docs(faq): add msvc lib install troubleshooting on windows #50

Workflow file for this run

name: docsearch
on:
deployment:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
algolia:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get the content of docsearch.json as config
id: algolia_config
run: echo "::set-output name=config::$(cat config.json | jq -r tostring)"
- name: Run algolia/docsearch-scraper image
env:
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }}
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
CONFIG: ${{ steps.algolia_config.outputs.config }}
run: |
docker run \
--env APPLICATION_ID=${ALGOLIA_APP_ID} \
--env API_KEY=${ALGOLIA_API_KEY} \
--env "CONFIG=${CONFIG}" \
algolia/docsearch-scraper