From 7f2a1dff0dd1ccedb94273f428d2bc968cf53b96 Mon Sep 17 00:00:00 2001 From: Daniel Thornburgh Date: Sun, 15 Sep 2024 12:10:16 -0700 Subject: [PATCH] [workflow] Separate artifacts --- .github/workflows/package.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index a1c05251..06a58e63 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -123,7 +123,7 @@ jobs: if: always() uses: actions/upload-artifact@v4 with: - name: test-screenshots + name: test-screenshots-${{ runner.os }} path: build/**/*.png - name: Build the docs. @@ -150,6 +150,7 @@ jobs: - name: Upload the SDK. uses: actions/upload-artifact@v4 with: + name: sdk-${{ runner.os }} path: | llvm-mos-linux.tar.xz llvm-mos-windows.7z @@ -160,9 +161,10 @@ jobs: needs: package steps: - name: Download the SDK. - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: - name: artifact + pattern: sdk-* + merge-multiple: true - name: Prerelease the SDK. uses: softprops/action-gh-release@v1