ci: fix docs

This commit is contained in:
2024-01-29 03:25:55 +02:00
committed by Chen Asraf
parent 901d5d76b4
commit 693b8c8ea4

View File

@@ -6,6 +6,7 @@ on:
jobs:
docs:
name: Build Documentation
runs-on: ubuntu-latest
# if: "contains(github.event.head_commit.message, 'chore(release)')"
steps:
@@ -20,7 +21,9 @@ jobs:
- name: Install PNPM
run: npm i -g pnpm
- name: Install dependencies
run: cd docs && pnpm install --frozen-lockfile
run: |
pnpm install --frozen-lockfile
cd docs && pnpm install --frozen-lockfile
- name: Build Docs
run: pnpm docs:build
- name: Deploy on GitHub Pages