Skip to content

Commit

Permalink
[workflow] Separate artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterymath committed Sep 15, 2024
1 parent 2f22f4b commit 7f2a1df
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7f2a1df

Please sign in to comment.