-
Notifications
You must be signed in to change notification settings - Fork 54
33 lines (25 loc) · 1.01 KB
/
scrape.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
name: DocSearch Scraper
on:
workflow_dispatch:
env:
TYPESENSE_NODE: ${{ vars.TYPESENSE_NODE }}
TYPESENSE_ADMIN_API_KEY: ${{ secrets.TYPESENSE_ADMIN_API_KEY }}
jobs:
crawl:
name: Crawl Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run DocSearch Scraper
uses: celsiusnarhwal/typesense-scraper@v2
with:
# The secret containing your Typesense API key. Required.
api-key: ${{ env.TYPESENSE_ADMIN_API_KEY }}
# The hostname or IP address of your Typesense server. Required.
host: ${{ env.TYPESENSE_NODE }}
# The port on which your Typesense server is listening. Optional. Default: 8108.
port: 443
# The protocol to use when connecting to your Typesense server. Optional. Default: http.
protocol: https
# The path to your DocSearch config file. Optional. Default: docsearch.config.json.
config: docsearch.config.json