Skip to content

refine intent engineering positioning and scope #265

refine intent engineering positioning and scope

refine intent engineering positioning and scope #265

Workflow file for this run

name: Deploy VitePress to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- uses: actions/configure-pages@v6
- run: npm ci
- run: npm run docs:build
- uses: actions/upload-pages-artifact@v5
with:
path: .vitepress/dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v5