From f8f399c9c0de40078b98bbd96ae682b001ab82db Mon Sep 17 00:00:00 2001 From: InvalidUsernameException Date: Mon, 23 Jun 2025 16:57:34 +0200 Subject: [PATCH] CI: Fix path to test-dumps folder of LibWeb tests for artifact upload The CI runs are supposed to upload test dumps for failed LibWeb tests as artifacts. However, the path for the artifact upload was wrong, it likely regressed in 9a5b31ccd1. --- .github/workflows/lagom-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lagom-template.yml b/.github/workflows/lagom-template.yml index 62fac3d97e9..e4f8508f89f 100644 --- a/.github/workflows/lagom-template.yml +++ b/.github/workflows/lagom-template.yml @@ -231,7 +231,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: libweb-test-artifacts-${{ inputs.os_name }}-${{ inputs.build_preset }}-${{ inputs.toolchain }}-${{ inputs.clang-plugins }} - path: ${{ github.workspace }}/Build/UI/Headless/test-dumps + path: ${{ github.workspace }}/Build/Lagom/Tests/LibWeb/test-web/test-dumps/ retention-days: 0 if-no-files-found: ignore