Bump brace-expansion from 1.1.12 to 1.1.13 in /manual/next #724
Workflow file for this run
This file contains hidden or 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 dev manual | |
| on: | |
| push: | |
| paths: | |
| - 'manual/**' | |
| branches: | |
| - master | |
| tags: | |
| - v** | |
| pull_request: | |
| paths: | |
| - 'manual/**' | |
| branches: | |
| - master | |
| jobs: | |
| build_dev_manual: | |
| name: Build developer documentation | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' | |
| steps: | |
| - uses: actions/checkout@v2.0.0 | |
| # - name: Set up JDK 11 | |
| # uses: actions/setup-java@v1 | |
| # with: | |
| # java-version: 11 | |
| # - uses: sbt/setup-sbt@v1.1.5 | |
| # - name: Generate dev documentation website (Paradox) | |
| # run: sh ./scripts/doc.sh buildDev | |
| - name: Set up Node.js 24 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| cache-dependency-path: manual/next/package-lock.json | |
| - name: Build Docusaurus documentation | |
| run: | | |
| cd manual/next | |
| npm ci --legacy-peer-deps | |
| npm run build-dev | |
| rm -rf ../../docs/devmanual | |
| cp -r build-dev ../../docs/devmanual | |
| - name: Commit files | |
| run: | | |
| git config --local user.email "otoroshi-github-actions@users.noreply.github.com" | |
| git config --local user.name "otoroshi-github-actions" | |
| git add --all | |
| git commit -am "Update dev documentation websites" | |
| - name: Push documentation | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |