File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5353
5454 - name : Generate TypeDoc API documentation
5555 run : |
56- # Install typedoc with modern theme
57- pnpm add -D typedoc@latest @typedoc/plugin-missing-exports@latest
56+ # Install typedoc
57+ pnpm add -D typedoc@latest
5858
5959 # Generate comprehensive API documentation
6060 npx typedoc src/main.ts src/lib/*.ts --out _site/docs \
6363 --exclude "**/*.test.ts" \
6464 --exclude "**/__tests__/**" \
6565 --exclude "**/*.bench.ts" \
66- --plugin @typedoc/plugin-missing-exports \
6766 --githubPages true \
6867 --includeVersion \
6968 --sort source-order \
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ jobs:
179179 const project = projectData.user?.projectV2;
180180 if (!project) {
181181 console.log(`Project ${projectNumber} not found for user ${owner}`);
182+ console.log('This may be due to insufficient permissions. Consider using a Personal Access Token (PAT) with project permissions.');
182183 return;
183184 }
184185
Original file line number Diff line number Diff line change @@ -356,16 +356,16 @@ jobs:
356356 EOF
357357
358358 - name : Setup Pages
359- uses : actions/configure-pages@v5
359+ uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
360360
361361 - name : Upload Pages artifact
362- uses : actions/upload-pages-artifact@v3
362+ uses : actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
363363 with :
364364 path : ' _site'
365365
366366 - name : Deploy to GitHub Pages
367367 id : deployment
368- uses : actions/deploy-pages@v4
368+ uses : actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
369369
370370 - name : Update dist SBOM in main branch
371371 run : |
You can’t perform that action at this time.
0 commit comments