From 37d05124821275f44ab2e31f0b1ede8361ad9a89 Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Tue, 20 Aug 2024 16:22:42 -0400 Subject: [PATCH] chore: fix matrix-update.yml pipeline --- .github/workflows/matrix-update.yml | 6 ++++++ .github/workflows/sdk-spec-test.yml | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/matrix-update.yml b/.github/workflows/matrix-update.yml index 7e7f3e4dac8..fd7bc646081 100644 --- a/.github/workflows/matrix-update.yml +++ b/.github/workflows/matrix-update.yml @@ -26,6 +26,12 @@ jobs: - name: Install pnpm Dependencies run: pnpm install --frozen-lockfile --filter ./tools/compatibility-matrix-automation + - name: Merge Artifacts + uses: actions/upload-artifact/merge@v4 + with: + name: out + pattern: out-* + - name: Download Output Files uses: actions/download-artifact@v4 with: diff --git a/.github/workflows/sdk-spec-test.yml b/.github/workflows/sdk-spec-test.yml index 528438df89f..d313d324654 100644 --- a/.github/workflows/sdk-spec-test.yml +++ b/.github/workflows/sdk-spec-test.yml @@ -219,12 +219,12 @@ jobs: cd ${{ matrix.test.directory }} $WING_CLI test --snapshots=deploy -t ${{ matrix.target }} -p ${{ (matrix.target == 'tf-azure' && 2 ) || (matrix.target == 'tf-gcp' && 5) || 10 }} --retry 3 $COMPATIBILITY *.test.w -o ../../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json - # - name: Upload Artifacts - # if: ${{ env.LOCAL_BUILD == 'true' }} - # uses: actions/upload-artifact@v4 - # with: - # name: out - # path: out/* + - name: Upload Artifacts + if: ${{ env.LOCAL_BUILD == 'true' }} + uses: actions/upload-artifact@v4 + with: + name: out-${{ matrix.test }}-${{ matrix.target }} + path: out/* - name: Output Terraform log if: failure()