Skip to content

See https://github.com/open-metadata/OpenMetadata/commit/1961e016a5c1… #518

See https://github.com/open-metadata/OpenMetadata/commit/1961e016a5c1…

See https://github.com/open-metadata/OpenMetadata/commit/1961e016a5c1… #518

# Copyright 2021 Collate
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Update search index
on:
push:
branches: [publish]
paths:
- content/**
workflow_dispatch:
jobs:
update-search:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Run index update
run: |
make search
env:
ALGOLIA_CLIENT_ID: ${{ secrets.ALGOLIA_CLIENT_ID }}
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }}
ALGOLIA_INDEX: ${{ secrets.ALGOLIA_INDEX }}