Skip to content

Update release manifests for v1.5.0 #13

Update release manifests for v1.5.0

Update release manifests for v1.5.0 #13

Workflow file for this run

name: Deploy Pages
on:
push:
branches: [main]
paths:
- "docs/**"
- "site/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v6
- uses: actions/configure-pages@v6
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
cache-dependency-path: site/package-lock.json
- run: npm ci
working-directory: site
- run: npm run build
working-directory: site
- uses: actions/upload-pages-artifact@v4
with:
path: ./site/dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5