Skip to content

chore: apply automated updates #13

chore: apply automated updates

chore: apply automated updates #13

Workflow file for this run

name: pages
on:
push:
branches: [main]
workflow_dispatch: {}
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v6
- run: npm i -fg corepack && corepack enable
- uses: actions/setup-node@v6
with: { node-version: lts/*, cache: "pnpm" }
- run: pnpm install
- run: pnpm vite build
- uses: actions/upload-pages-artifact@v3
with: { path: dist-pages }
- id: deployment
uses: actions/deploy-pages@v4