feat: deploy to pages

This commit is contained in:
2023-02-19 13:39:16 +01:00
parent b4771ce23f
commit 178501233f
2 changed files with 52 additions and 0 deletions

19
.github/actions/build/action.yaml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: "Build"
description: "Install deps and build docs"
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Build
run: pnpm build
shell: bash