Skip to content

Commit 5124ac1

Browse files
authored
Update msbuild.yml - separate artifacts
1 parent d3abb24 commit 5124ac1

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

.github/workflows/msbuild.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,31 @@ jobs:
8080
./Install/Win32/install_image/*_Win32.exe
8181
./Install/Win32/install_image/*_x64.exe
8282
83-
- name: Upload artefacts
83+
- name: Upload artefacts
8484
run: |
8585
echo "${{ steps.virustotal_scan.outputs.analysis }}" > ./Install/Win32/install_image/VirusTotalScan.txt
86+
8687
- uses: actions/upload-artifact@v4
88+
id: upload_step1
8789
with:
88-
name: win_installers
89-
path: ./Install/Win32/install_image/
90+
name: VirusTotalScan
91+
path: ./Install/Win32/install_image/VirusTotalScan.txt
92+
93+
- uses: actions/upload-artifact@v4
94+
id: upload_step2
95+
with:
96+
name: Win32Installer
97+
path: ./Install/Win32/install_image/*_Win32.exe
98+
99+
- uses: actions/upload-artifact@v4
100+
id: upload_step3
101+
with:
102+
name: x64Installer
103+
path: ./Install/Win32/install_image/*_x64.exe
104+
105+
- name: Upload results
106+
run: |
107+
echo 'VirusTotalScan: Artifact ID is ${{ steps.upload_step1.outputs.artifact-id }}, URL is ${{ steps.upload_step1.outputs.artifact-url }}'
108+
echo 'Win32Installer: Artifact ID is ${{ steps.upload_step2.outputs.artifact-id }}, URL is ${{ steps.upload_step2.outputs.artifact-url }}'
109+
echo 'x64Installer: Artifact ID is ${{ steps.upload_step3.outputs.artifact-id }}, URL is ${{ steps.upload_step3.outputs.artifact-url }}'
110+

0 commit comments

Comments
 (0)