Skip to content

chore: add gap between manager top tab triggers and contents #1006

chore: add gap between manager top tab triggers and contents

chore: add gap between manager top tab triggers and contents #1006

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
doc-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Build docs
run: |
cd website
pnpm build
- name: Upload build artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/build
doc-deploy:
needs: doc-build
if: github.event_name == 'push'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4