-
Notifications
You must be signed in to change notification settings - Fork 333
[wip]feat: add auot build main module docs yml #3909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6264dec
24fc500
e11d946
a698cec
a9d9b8f
fb2a4d5
7ee298e
f0e27b0
a6ee7cc
34f674a
5c0b64f
2dd4f02
9151f9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| name: Auto Build Main Module Docs | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [dev] | ||
| push: | ||
| branches: [dev] | ||
|
|
||
| jobs: | ||
| verify-main-build: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
|
|
||
| steps: | ||
| - uses: webfactory/ssh-agent@v0.8.0 | ||
| with: | ||
| ssh-private-key: ${{ secrets.SUBMODULE_SSH_KEY_PRIVATE }} | ||
| - name: Checkout submodule repo | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| token: ${{ secrets.PAT_TOKEN }} | ||
|
|
||
| - name: Checkout main repository | ||
| run: | | ||
| # 克隆主仓库 | ||
| git clone https://github.com/opentiny/docs.git docs | ||
| cd docs | ||
|
|
||
| # 更新子模块到PR分支的版本 | ||
| git submodule sync --recursive | ||
| git submodule update --init --recursive | ||
|
|
||
|
|
||
| # 获取PR分支的最新提交 | ||
| cd ./tiny-vue | ||
| BRANCH_NAME="${{ github.head_ref }}" | ||
| git fetch origin $BRANCH_NAME | ||
| git checkout $BRANCH_NAME | ||
|
|
||
| # 回到主仓库根目录 | ||
| cd ../ | ||
|
|
||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v3 | ||
| with: | ||
| version: 9 | ||
|
|
||
| - name: Run main repo build | ||
| id: build | ||
| working-directory: ./docs | ||
| run: | | ||
| pnpm i | ||
| # 如果使用VitePress | ||
| pnpm build | ||
|
|
||
| - name: Update PR status | ||
| if: always() | ||
| run: | | ||
| # 检查构建是否成功 | ||
| if [ ${{ steps.build.outcome }} == 'success' ]; then | ||
| echo "✅ 主仓库构建成功" | ||
| else | ||
| echo "❌ 主仓库构建失败" | ||
| exit 1 | ||
| fi | ||
|
Comment on lines
+59
to
+68
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix comparison syntax and consider actual PR status update. Line 67 has a syntax issue with the shell comparison. The Additionally, this step only echoes the status and exits—it doesn't actually update the PR with a comment or status check as the step name suggests. Apply this diff to fix the comparison: run: |
# 检查构建是否成功
- if [ ${{ steps.build.outcome }} == 'success' ]; then
+ if [ "${{ steps.build.outcome }}" == "success" ]; then
echo "✅ 主仓库构建成功"
else
echo "❌ 主仓库构建失败"
exit 1
fiIf you want to actually update the PR, add a step using - name: Comment on PR
if: always() && github.event_name == 'pull_request'
uses: actions/github-script@v7
with:
script: |
const outcome = '${{ steps.build.outcome }}';
const message = outcome === 'success'
? '✅ Main repo docs build succeeded'
: '❌ Main repo docs build failed';
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: message
});🤖 Prompt for AI Agents |
||
Uh oh!
There was an error while loading. Please reload this page.