Skip to content

feature: expose custom html based splitter #282

feature: expose custom html based splitter

feature: expose custom html based splitter #282

name: Deploy TS-SDK docs to github pages
on:
push:
paths:
- 'clients/ts-sdk/**'
branches: ["main"]
pull_request:
paths:
- 'clients/ts-sdk/**'
branches: ["main"]
jobs:
build:
runs-on: blacksmith-2vcpu-ubuntu-2204
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
contents: read
pages: write
id-token: write
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build the app
working-directory: ./clients/ts-sdk
run: yarn build:docs
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./clients/ts-sdk/docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}