Exclude debug info in build artifacts

This commit is contained in:
Jarrod Doyle 2024-12-10 17:53:42 +00:00
parent b686123e0a
commit 29b1c78782
Signed by: Jayrude
GPG Key ID: 38B57B16E7C0ADF7
1 changed files with 6 additions and 2 deletions

View File

@ -25,7 +25,9 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: win_x64
path: ${{ github.workspace }}/release/win-x64/
path: |
${{ github.workspace }}/release/win-x64/
!${{ github.workspace }}/release/win-x64/*.pdb
build-linux-x64:
runs-on: ubuntu-latest
steps:
@ -43,4 +45,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: linux_x64
path: ${{ github.workspace }}/release/linux-x64/
path: |
${{ github.workspace }}/release/linux-x64/
!${{ github.workspace }}/release/linux-x64/*.dbg