Skip to content

Commit

Permalink
Update msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
illusion0001 authored Jan 24, 2025
1 parent 8e2a114 commit 632f5ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,23 @@ jobs:
$hash | Out-File -Append -FilePath "${{ env.INSTALL_CONFIGURATION }}\hashes.txt"
echo $hash
}
- name: Upload artifact
if: env.IS_PUSH == 'true'
uses: actions/upload-artifact@main
with:
name: ${{ env.zip_name }}-x64-pdb
path: |
${{ env.INSTALL_CONFIGURATION }}/${{ env.DLL_OUT }}
${{ env.INSTALL_CONFIGURATION }}/hashes.txt
- name: Upload artifact (PDB)
if: env.IS_PUSH == 'true'
uses: actions/upload-artifact@main
with:
name: ${{ env.zip_name }}-x64
path: |
${{ env.INSTALL_CONFIGURATION }}/${{ env.DLL_OUT }}
!${{ env.INSTALL_CONFIGURATION }}/${{ env.DLL_OUT }}/**/*.pdb
${{ env.INSTALL_CONFIGURATION }}/hashes.txt
- name: Prepare Release
run: |
$hashMarkdown = @'
Expand Down

0 comments on commit 632f5ea

Please sign in to comment.