Skip to content

Update to the new LangChain4j API (#18) #37

Update to the new LangChain4j API (#18)

Update to the new LangChain4j API (#18) #37

Workflow file for this run

name: Build workshop docs
on:
push:
branches: [main]
jobs:
docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install tools
run: npm i -g @moaw/cli
- name: Build and update docs
run: |
git config --global user.name "sinedied"
git config --global user.email "[email protected]"
./scripts/repo/build-docs.sh
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}