Skip to content

Commit

Permalink
Update msbuild.yml - separate artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
irodushka authored Sep 27, 2024
1 parent d3abb24 commit 5124ac1
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,31 @@ jobs:
./Install/Win32/install_image/*_Win32.exe
./Install/Win32/install_image/*_x64.exe
- name: Upload artefacts
- name: Upload artefacts
run: |
echo "${{ steps.virustotal_scan.outputs.analysis }}" > ./Install/Win32/install_image/VirusTotalScan.txt
- uses: actions/upload-artifact@v4
id: upload_step1
with:
name: win_installers
path: ./Install/Win32/install_image/
name: VirusTotalScan
path: ./Install/Win32/install_image/VirusTotalScan.txt

- uses: actions/upload-artifact@v4
id: upload_step2
with:
name: Win32Installer
path: ./Install/Win32/install_image/*_Win32.exe

- uses: actions/upload-artifact@v4
id: upload_step3
with:
name: x64Installer
path: ./Install/Win32/install_image/*_x64.exe

- name: Upload results
run: |
echo 'VirusTotalScan: Artifact ID is ${{ steps.upload_step1.outputs.artifact-id }}, URL is ${{ steps.upload_step1.outputs.artifact-url }}'
echo 'Win32Installer: Artifact ID is ${{ steps.upload_step2.outputs.artifact-id }}, URL is ${{ steps.upload_step2.outputs.artifact-url }}'
echo 'x64Installer: Artifact ID is ${{ steps.upload_step3.outputs.artifact-id }}, URL is ${{ steps.upload_step3.outputs.artifact-url }}'

0 comments on commit 5124ac1

Please sign in to comment.