From 29b1c78782a0613db3c19980edda2bb26ccc637a Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Tue, 10 Dec 2024 17:53:42 +0000 Subject: [PATCH] Exclude debug info in build artifacts --- .github/workflows/build.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6c1a9fd..a405a3c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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/ \ No newline at end of file + path: | + ${{ github.workspace }}/release/linux-x64/ + !${{ github.workspace }}/release/linux-x64/*.dbg \ No newline at end of file