Skip to content

Qol updates (#7490)

Qol updates (#7490) #1

Workflow file for this run

name: Sync Mixedbread Vector Store
on:
workflow_dispatch:
push:
branches: [main]
paths: [apps/docs/content/docs/**/*.mdx]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
test:
name: Sync Docs
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Upload Docs
run: pnpm dlx mixedbread/cli store sync "${MIXEDBREAD_VECTOR_STORE_ID}" "apps/docs/content/docs/**/*.mdx" --yes --strategy fast
env:
MIXEDBREAD_API_KEY: ${{ secrets.MIXEDBREAD_API_KEY }}
MIXEDBREAD_VECTOR_STORE_ID: ${{ secrets.MIXEDBREAD_VECTOR_STORE_ID }}