Skip to content

Merge pull request #320 from chshanovskiy/main #123

Merge pull request #320 from chshanovskiy/main

Merge pull request #320 from chshanovskiy/main #123

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v2
- name: 🐧 Use Node.js v18.x
uses: actions/setup-node@v4
with:
node-version: v18.x
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml
- name: 🔍 Installation
run: pnpm install
working-directory: ./
- name: 🔧 Build
run: pnpm build
working-directory: ./website
- name: 🚀 Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./website/build