Skip to content

refactor: move icons to design package #842

refactor: move icons to design package

refactor: move icons to design package #842

Workflow file for this run

name: SDK API Docs
on:
push:
branches:
- main
pull_request:
jobs:
# Build job
build:
# Disable API docs for now since we don't have that much of an API anymore.
if: 'false'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- run: pnpm i
- run: pnpm build-api-docs
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: packages/sdk-docs/dist
# Deployment job
deploy:
if: false && github.event_name == 'push' && github.ref_name == 'main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4