Skip to content

Add missing LICENSE headers (#29) #10

Add missing LICENSE headers (#29)

Add missing LICENSE headers (#29) #10

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- "master"
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build-deploy:
name: Build Website and Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install Dependencies
run: npm ci
- name: Bundle Extensions
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: src/.vitepress/dist