mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 17:00:27 -04:00
77004016f4
## Problem On Safari, it's impossible to resize a column. ## Solution This is actually a bug in `react-data-grid` that has been fixed in more recent versions but we can't use them. Patch the package ## How to test - Open the any table in the _Table editor_ - Resize a column
81 lines
2.2 KiB
YAML
81 lines
2.2 KiB
YAML
name: Generate Embeddings for Search
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/search.yml'
|
|
- 'supabase/migrations/**'
|
|
- 'apps/docs/**'
|
|
workflow_dispatch:
|
|
inputs:
|
|
refresh:
|
|
description: 'Refresh all pages'
|
|
required: false
|
|
type: boolean
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-prod
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
|
|
env:
|
|
DOCS_GITHUB_APP_ID: ${{ secrets.SEARCH_GITHUB_APP_ID }}
|
|
DOCS_GITHUB_APP_INSTALLATION_ID: ${{ secrets.SEARCH_GITHUB_APP_INSTALLATION_ID }}
|
|
DOCS_GITHUB_APP_PRIVATE_KEY: ${{ secrets.SEARCH_GITHUB_APP_PRIVATE_KEY }}
|
|
NEXT_PUBLIC_MISC_URL: ${{ secrets.NEXT_PUBLIC_MISC_URL}}
|
|
NEXT_PUBLIC_MISC_ANON_KEY: ${{ secrets.NEXT_PUBLIC_MISC_ANON_KEY }}
|
|
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.SEARCH_SUPABASE_URL }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
SUPABASE_SECRET_KEY: ${{ secrets.SEARCH_SUPABASE_SERVICE_ROLE_KEY }}
|
|
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
with:
|
|
sparse-checkout: |
|
|
apps/docs
|
|
apps/www/.env.local.example
|
|
examples
|
|
packages
|
|
supabase
|
|
patches
|
|
|
|
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
|
|
- name: Download dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Update embeddings
|
|
working-directory: ./apps/docs
|
|
if: ${{ !inputs.refresh }}
|
|
run: |
|
|
pnpm run codegen:examples
|
|
pnpm run embeddings
|
|
pnpm run embeddings:nimbus
|
|
|
|
- name: Refresh embeddings
|
|
working-directory: ./apps/docs
|
|
if: ${{ inputs.refresh }}
|
|
run: |
|
|
pnpm run codegen:examples
|
|
pnpm run embeddings:refresh
|
|
pnpm run embeddings:nimbus:refresh
|