We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8be280 commit 89dd492Copy full SHA for 89dd492
.github/workflows/docs-ci.yaml
@@ -52,4 +52,12 @@ jobs:
52
DOCS_V2_ORIGIN: https://v2.element-plus-x.com
53
DOCS_ROOT_ORIGIN: https://element-plus-x.com
54
DOCS_USE_SOURCE: 'true'
55
- run: pnpm run build:docs
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57
+ run: |
58
+ mkdir -p apps/internal/metadata/dist
59
+ if [[ ! -f apps/internal/metadata/dist/component-contributors.json ]]; then
60
+ echo '{}' > apps/internal/metadata/dist/component-contributors.json
61
+ fi
62
+ pnpm run gen:changelog
63
+ pnpm -C apps/docs build
0 commit comments