Update to the new LangChain4j API (#18) #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |