diff --git a/.github/workflows/search.yaml b/.github/workflows/search.yaml index addea3f6c..f427d2f4e 100644 --- a/.github/workflows/search.yaml +++ b/.github/workflows/search.yaml @@ -8,7 +8,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 + - name: Set up Homebrew + uses: Homebrew/actions/setup-homebrew@master - name: Run Scraper run: | brew install jq diff --git a/README.md b/README.md index 7fda9bbf9..67e04d936 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ See https://www.npmjs.com/package/typedoc-plugin-markdown for details. # How to Update search indices with algolia -- Create an .env file with `APPLICATION_ID` and the `API_KEY` (write access). +- Create an .env file with `APPLICATION_ID` and the `API_KEY` (Admin API Key w/ write access, should be kept secret). If you don't have those, one for the Engineering Managers should be able to help you. - Edit config.json file if needed: - Start url from updated website diff --git a/docusaurus.config.js b/docusaurus.config.js index 2a4387f48..da7ea79af 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -28,7 +28,7 @@ module.exports = { additionalLanguages: ['solidity'], }, algolia: { - apiKey: '32465e2ab6f7554ff014e64c0d92171c', + apiKey: '32465e2ab6f7554ff014e64c0d92171c', // Search-Only API Key (Public & safe to commit) indexName: 'v3-docs', appId: 'S0IDD0YGLZ', },