chore: upload e2e results to artifacts, for test failure troubleshooting

This commit is contained in:
tanzhenxin
2025-10-23 18:56:06 +08:00
parent 1dd21537ce
commit 5e65d6cae7

View File

@@ -128,6 +128,16 @@ jobs:
OPENAI_BASE_URL: '${{ secrets.OPENAI_BASE_URL }}'
OPENAI_MODEL: '${{ secrets.OPENAI_MODEL }}'
- name: 'Upload Integration Test Results'
if: |-
${{ always() && github.event.inputs.force_skip_tests != 'true' }}
uses: 'actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808' # ratchet:actions/upload-artifact@v4
with:
name: 'integration-test-results-${{ github.run_id }}'
path: '.integration-tests/'
retention-days: 7
if-no-files-found: 'warn'
- name: 'Configure Git User'
run: |
git config user.name "github-actions[bot]"