Skip to content

feat: add logo to h1 headers and capitalize Nimble.css in titles/footers #66

feat: add logo to h1 headers and capitalize Nimble.css in titles/footers

feat: add logo to h1 headers and capitalize Nimble.css in titles/footers #66

Workflow file for this run

name: Deploy demo to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: node build.js
# site/ is the serve root; build.js already wrote dist/ into site/dist/
- name: Assemble site
run: cp -r site/ _site/
- uses: actions/upload-pages-artifact@v3
with:
path: _site
- id: deployment
uses: actions/deploy-pages@v4