chore(deps): update dependency @moonrepo/cli to v1.29.3 #889
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 document | |
on: | |
push: | |
branches: | |
- v3 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: actions4git/setup-git@v1 | |
- uses: moonrepo/setup-toolchain@v0 | |
- run: | | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
- name: Build and publish document | |
run: moon run docs:publish | |
env: | |
NODE_OPTIONS: --max-old-space-size=8192 |