Skip to content

Commit f8aae10

Browse files
authored
ci: Upload Windows debug symbols as an artifact to make it possible for developers to debug crashes on other systems. (#1336)
1 parent 001ae7a commit f8aae10

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@ jobs:
290290
# after the first wildcard pattern"
291291
# See also https://github.com/actions/upload-artifact/issues/248
292292
path: installer/mac/*.app
293+
- name: upload debug symbols Win
294+
if: ${{ matrix.os == 'windows-latest' }}
295+
uses: actions/upload-artifact@v4
296+
with:
297+
name: windows_debug_symbols
298+
path: build/*/*.pdb
293299
outputs:
294300
version: ${{ env.version }}
295301
# These will only be set for snapshot builds. Furthermore, each OS job

0 commit comments

Comments
 (0)