Skip to content

Commit

Permalink
Fixed windows ci not uploading debug files to sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilInTheGaps committed Nov 6, 2023
1 parent 6095839 commit d6306b6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Upload debug symbols
run: |
cd build
sentry-cli upload-dif --org rophil --project gm-companion --include-sources app/
sentry-cli upload-dif --org rophil --project gm-companion --include-sources ./
- name: Make Install
run: |
Expand All @@ -101,8 +101,11 @@ jobs:
- name: Deploy
run: ${{ github.workspace }}\cqtdeployer\1.6\CQtDeployer.exe -bin build\install\bin\gm-companion.exe,build\install\bin\librespot.exe -libDir build\cget\bin,build\cget\lib -qmlDir app\ui -targetDir build\install\bin

- name: Remove debug info from install folder
run: rm .\build\install\**\*.pdb
- name: Remove debug and test info from install folder
run: |
rm .\build\install\gmock*
rm .\build\install\gtest*
rm .\build\install\**\*.pdb
- name: Upload Build
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit d6306b6

Please sign in to comment.