Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/algolia.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Algolia
on:
push:
branches:
- master
workflow_dispatch:

jobs:
update_algolia_job:
Expand All @@ -13,7 +11,7 @@ jobs:

- name: Get Algolia config
id: algolia_config
run: echo "::set-output name=config::$(cat algolia_config.json | jq -r tostring)"
run: echo "config=$(cat algolia_config.json | jq -r tostring)" >> "$GITHUB_OUTPUT"

- name: Push indices to Algolia
uses: signcl/docsearch-scraper-action@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set Node.js 20.x
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version-file: .nvmrc

- name: Install Deps
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
24.13.0
2 changes: 2 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[[plugins]]
package = "./plugins/trigger-algolia-scraper"
Loading