fix: works now pls?

This commit is contained in:
2025-03-10 22:04:45 +01:00
parent 782ac97028
commit c55da7b33a
2 changed files with 8 additions and 10 deletions

View File

@@ -38,16 +38,14 @@ jobs:
name: documentation
- run: tar -xf documentation.tar ./docs -C ./docs
- run: npm install -g pnpm && pnpm install
- name: Build
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm run build # set up 'build' script in your package.json
- name: Install Deps
run: npm install -g pnpm && pnpm
- name: Build documents
run: pnpm run docs #set up 'docs' build script in your package.json
- name: Build lib
run: pnpm run build
- name: Build docs
run: pnpm run docs:generate
- name: tar the new docs
run: tar -cvf newdocumentation.tar ./docs