-
Notifications
You must be signed in to change notification settings - Fork 269
49 lines (44 loc) · 1.24 KB
/
algolia.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Algolia Action
on:
push:
paths:
- "_data/**"
- "workspaces/cms-*/**"
- ".github/workflows/algolia.yml"
branches:
- dev
- production
jobs:
update-index:
runs-on: ubuntu-22.04
environment: "dev-algolia-index"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
.yarn/cache
.yarn/install-state.gz
.eslintcache
**/tsconfig.tsbuildinfo
**/.types/**
**/.types-*/**
key: build-cache-${{ hashFiles('yarn.lock') }}
restore-keys: |
build-cache-
- name: Install dependencies
run: yarn
- name: Update Algolia search index
run: yarn workspace @starknet-io/cms-scripts update-algolia-index
env:
ALGOLIA_INDEX: ${{ github.ref_name }}
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }}
ALGOLIA_SEARCH_API_KEY: ${{ secrets.ALGOLIA_SEARCH_API_KEY }}
ALGOLIA_WRITE_API_KEY: ${{ secrets.ALGOLIA_WRITE_API_KEY }}