ci(P0-3): 修复 daily-check.yml 中 job outputs 配置错误
CI/CD Pipeline / Frontend Lint (push) Successful in 1m49s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 10m0s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped

- staging-api-tests.outputs.report: steps.smoke → steps.report
  (smoke step 输出的是 api_report,report step 才输出 report)
- staging-e2e.outputs.report: steps.smoke → steps.e2e
  (该 job 的 step id 是 e2e,不是 smoke)
- 修复后 daily-report job 才能正确获取各巡检项状态
This commit is contained in:
2026-07-09 13:45:40 +08:00
parent b012a7da00
commit bc83a361b1
+2 -2
View File
@@ -112,7 +112,7 @@ jobs:
runs-on: saas
timeout-minutes: 10
outputs:
report: ${{ steps.smoke.outputs.report }}
report: ${{ steps.report.outputs.report }}
steps:
- name: Checkout code
@@ -249,7 +249,7 @@ jobs:
runs-on: saas
timeout-minutes: 15
outputs:
report: ${{ steps.smoke.outputs.report }}
report: ${{ steps.e2e.outputs.report }}
steps:
- name: Checkout code