cleanup: show edge of next item in carousel #24
This file contains 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 Beta Component | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "clients/search-component/**" | |
jobs: | |
build-test: | |
runs-on: blacksmith-2vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download current production api.json | |
working-directory: ./clients/ts-sdk | |
run: wget https://api.trieve.ai/api-docs/openapi.json | |
- name: Use Node LTS ✨ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org | |
cache: yarn | |
- name: Build the TS SDK | |
working-directory: ./clients/ts-sdk | |
run: yarn && yarn build:clean | |
- name: Install dependencies 📦️ | |
working-directory: ./clients/search-component/ | |
run: yarn --frozen-lockfile | |
- name: Build 🔨 | |
env: | |
BUNNY_API_KEY: ${{ secrets.BUNNY_API_KEY }} | |
working-directory: ./clients/search-component/ | |
run: yarn build:clean | |
- name: Push to bunny 🚀 | |
env: | |
BUNNY_API_KEY: ${{ secrets.BUNNY_API_KEY }} | |
working-directory: ./clients/search-component/ | |
run: yarn push:cdn:beta | |
- name: Invalidate Bunny cache | |
env: | |
BUNNY_NET_API_KEY: ${{ secrets.BUNNY_NET_API_KEY }} | |
run: | | |
curl --request POST \ | |
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Fcdn.trieve.ai%2Fbeta%2Fsearch-component%2Findex.css&async=false' \ | |
--header "AccessKey: ${BUNNY_NET_API_KEY}" | |
curl --request POST \ | |
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Fcdn.trieve.ai%2Fbeta%2Fsearch-component%2Findex.js&async=false' \ | |
--header "AccessKey: ${BUNNY_NET_API_KEY}" | |
curl --request POST \ | |
--url 'https://api.bunny.net/purge?url=https%3A%2F%2Fcdn.trieve.ai%2Fbeta%2Fsearch-component%2Fvanilla%2Findex.js&async=false' \ | |
--header "AccessKey: ${BUNNY_NET_API_KEY}" |