Skip to content

Commit 7e4ea5e

Browse files
authored
Update build-llvm-for-windows.yml
MODFIY
1 parent ef71707 commit 7e4ea5e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-llvm-for-windows.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ jobs:
2828
cd build
2929
ninja
3030
31+
- name: Compress build output
32+
run: |
33+
Compress-Archive -Path build/* -DestinationPath llvm-windows-build.zip
34+
3135
- name: Create Release
3236
id: create_release
3337
uses: actions/create-release@v1
@@ -45,6 +49,6 @@ jobs:
4549
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4650
with:
4751
upload_url: ${{ steps.create_release.outputs.upload_url }}
48-
asset_path: build/
52+
asset_path: llvm-windows-build.zip
4953
asset_name: llvm-windows-build.zip
5054
asset_content_type: application/zip

0 commit comments

Comments
 (0)