We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef71707 commit 7e4ea5eCopy full SHA for 7e4ea5e
.github/workflows/build-llvm-for-windows.yml
@@ -28,6 +28,10 @@ jobs:
28
cd build
29
ninja
30
31
+ - name: Compress build output
32
+ run: |
33
+ Compress-Archive -Path build/* -DestinationPath llvm-windows-build.zip
34
+
35
- name: Create Release
36
id: create_release
37
uses: actions/create-release@v1
@@ -45,6 +49,6 @@ jobs:
45
49
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
50
with:
47
51
upload_url: ${{ steps.create_release.outputs.upload_url }}
48
- asset_path: build/
52
+ asset_path: llvm-windows-build.zip
53
asset_name: llvm-windows-build.zip
54
asset_content_type: application/zip
0 commit comments