Skip to content

Hotfix for Noto Sans and Noto Sans JP #5

Hotfix for Noto Sans and Noto Sans JP

Hotfix for Noto Sans and Noto Sans JP #5

Workflow file for this run

name: deploy-pages
on:
push:
branches: "v3"
paths-ignore:
- README.md
- CONTRIBUTING.md
- LICENSE
- .gitignore
- .github/**
- "!.github/workflows/deploy-pages.yml"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
deploy-pages:
environment:
name: github-pages
url: ${{ steps.deploy-pages.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
# Lockfile is in subfolder
# cache: npm
- run: npm install
working-directory: docs
- id: configure-pages
uses: actions/configure-pages@v4
- run: npm run build
working-directory: docs
env:
BASE_PATH: ${{ steps.configure-pages.outputs.base_path }}/
- uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
- id: deploy-pages
uses: actions/deploy-pages@v4