Skip to content

Deploy to GitHub Pages #107

Deploy to GitHub Pages

Deploy to GitHub Pages #107

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch:
repository_dispatch:
types:
- buildhook
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- uses: pnpm/action-setup@v4
with:
run_install: true
version: 9
- name: Build project
run: pnpm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist