We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f7eef commit 9ff574cCopy full SHA for 9ff574c
.github/workflows/update-trieve.yml
@@ -0,0 +1,28 @@
1
+name: Update Trieve
2
+
3
+concurrency:
4
+ group: ${{ github.workflow }}-${{ github.head_ref }}
5
+ cancel-in-progress: true
6
7
+on:
8
+ push:
9
+ branches:
10
+ - main
11
12
+jobs:
13
+ run:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Install Trieve Fern Adapter
20
+ run: npm install -g @zobeir/trieve-fern-adapter
21
22
+ - name: Update Trieve Chunks
23
+ env:
24
+ TRIEVE_API_HOST: ${{ secrets.TRIEVE_API_HOST }}
25
+ TRIEVE_API_KEY: ${{ secrets.TRIEVE_API_KEY }}
26
+ TRIEVE_ORGANIZATION_ID: ${{ secrets.TRIEVE_ORGANIZATION_ID }}
27
+ TRIEVE_DATASET_TRACKING_ID: ${{ secrets.TRIEVE_DATASET_TRACKING_ID }}
28
+ run: trieve-fern-adapter --file fern/docs.yml -s https://api.vapi.ai/api-json -r https://docs.vapi.ai -a api-reference
0 commit comments