📝 update demo #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: Publish Docs | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
[ | |
"packages/**/*.js", | |
"packages/**/*.css", | |
"packages/**/*.html", | |
"packages/**/*.svg", | |
"packages/**/*.json", | |
"packages/**/*.ts", | |
"packages/**/*.tsx", | |
"packages/**/*.sh", | |
] | |
workflow_dispatch: | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ">=18.18" | |
- name: Install pnpm and turbo | |
run: npm install -g pnpm turbo | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build docs | |
run: cd ./packages/core && pnpm build:docs | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ./packages/core/docs | |
single-commit: true |