Skip to content

chore: add ESM build to icon fonts and refactor the icon docs page #98

chore: add ESM build to icon fonts and refactor the icon docs page

chore: add ESM build to icon fonts and refactor the icon docs page #98

Workflow file for this run

name: Deploy docs to gh-pages
on:
push:
branches:
- master
- v8_maintenance
- v9_maintenance
workflow_dispatch:
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node 22
uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm ci && npm run bootstrap
- name: Set build directory and deployment path based on branch
id: set-build-dir
run: |
echo "::set-output name=build_dir::./packages/__docs__/__build__"
case "${{ github.ref }}" in
"refs/heads/master")
echo "::set-output name=deploy_dir::./"
;;
"refs/heads/v8_maintenance")
echo "::set-output name=deploy_dir::v8"
;;
"refs/heads/v9_maintenance")
echo "::set-output name=deploy_dir::v9"
;;
esac
- name: Build docs-app
run: npm run build:docs
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ${{ steps.set-build-dir.outputs.build_dir }}
branch: gh-pages
target-folder: ${{ steps.set-build-dir.outputs.deploy_dir }}
clean-exclude: pr-preview
force: false