docs: release docs and update release script (#176)

This commit is contained in:
Marcus Schiesser
2025-09-11 12:56:20 +08:00
committed by GitHub
parent e74d8e4764
commit 99dab11daa
3 changed files with 14 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@llamaindex/workflow-docs": patch
---
Updated docs
+8
View File
@@ -5,6 +5,10 @@ on:
branches:
- main
permissions:
id-token: write # Required for OIDC
contents: read
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
@@ -18,7 +22,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org'
cache: "pnpm"
# Ensure npm 11.5.1 or later is installed for trusted publishing
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: pnpm install
- name: Generate API Documentation
+1 -1
View File
@@ -1,5 +1,5 @@
import type { Configuration } from "lint-staged";
export default {
"*": ["biome check"],
"*": ["biome check --no-errors-on-unmatched"],
} satisfies Configuration;