Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

app-release

app-release #311

Workflow file for this run

name: Deploy
on:
push:
branches: [main]
repository_dispatch:
types: [app-release]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: .vitepress/dist # The folder the action should deploy.
git-config-name: kotatsu-bot
git-config-email: bot@kotatsu.app