From 1bcd4f248248c3a584ef3aa3d84cab66c5d3bc60 Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Fri, 17 Jan 2025 13:17:25 +0000 Subject: [PATCH] test.yaml: bump upload artifact --- .github/workflows/test.yaml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c4c032f61c..ad347b2fde 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -61,9 +61,9 @@ jobs: - name: Upload check results if: steps.check_files.outputs.files_exists == 'true' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: qa + name: qa-${{ matrix.os }} path: out/ diffenator: @@ -111,11 +111,21 @@ jobs: - name: Upload check results if: steps.check_files.outputs.files_exists == 'true' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: qa + name: qa-diffenator path: out/ + consolidate: + needs: [diffbrowsers, diffenator] + name: Consolidate results into a single zip + runs-on: ubuntu-latest + steps: + - uses: actions/upload-artifact/merge@v4 + with: + pattern: qa-* + name: qa + ftxvalidator: name: Run ftxvalidator on new/changed fonts runs-on: macos-latest -- 2.47.2