Skip to content

feat: form

feat: form #47

Workflow file for this run

name: Deploy website
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
pull-requests: write
issues: write
repository-projects: write
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build CSS
run: pnpm run docs:build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site