Fix dirty mid-computation when truncate was changed causing stale refs #2829
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: Generate Documentation Model | |
| on: | |
| push: | |
| permissions: | |
| contents: read | |
| jobs: | |
| docmodel: | |
| name: Generate Documentation Model | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: ">=23.6.0" | |
| - run: npm ci | |
| - name: Generate documentation model | |
| run: npm run docmodel | |
| - name: Upload documentation model artifact | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| with: | |
| name: client-api-documentation | |
| path: docs/public/client.api.json | |
| retention-days: 30 |