chore(docs): update Discord links in various documentation files to n… #44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Trieve | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - v4.x | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install Trieve Vitepress Adapter | |
| run: bun install -g trieve-vitepress-adapter | |
| - name: Update Trieve Chunks | |
| env: | |
| TRIEVE_API_HOST: ${{ secrets.TRIEVE_API_HOST }} | |
| TRIEVE_API_KEY: ${{ secrets.TRIEVE_API_KEY }} | |
| TRIEVE_ORGANIZATION_ID: ${{ secrets.TRIEVE_ORGANIZATION_ID }} | |
| TRIEVE_DATASET_TRACKING_ID: ${{ secrets.TRIEVE_DATASET_TRACKING_ID }} | |
| NODE_OPTIONS: --max-old-space-size=8192 | |
| run: trieve-vitepress-adapter --path . -s https://coolify.io/docs/openapi.json -r https://coolify.io -a docs/api-reference/api/operations |