Skip to content

ci: fix

ci: fix #121

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
actions: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install Dependencies
run: pnpm install
- name: Install Playwright (for MermaidJS)
run: pnpm exec playwright install --with-deps chromium
- name: Build Website
run: pnpm build
- name: Upload Built Website
uses: actions/upload-pages-artifact@v3
with:
path: ./dist/
deploy:
needs:
- build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
timeout-minutes: 10
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4