File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -220,14 +220,23 @@ jobs:
220220 TAURI_BUNDLE_PATH : ../..
221221
222222 - name : Upload debug symbols to Sentry
223- if : ${{ matrix.settings. runner == 'macos-latest ' }}
223+ if : ${{ runner.os == 'macOS ' }}
224224 env :
225225 SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
226226 working-directory : target
227227 run : |
228228 curl -sL https://sentry.io/get-cli/ | bash
229229 sentry-cli debug-files upload -o ${{ env.SENTRY_ORG }} -p ${{ env.SENTRY_PROJECT }} Cap.dSYM
230230
231+ - name : Upload debug symbols to Sentry
232+ if : ${{ runner.os == 'Windows' }}
233+ env :
234+ SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
235+ working-directory : target
236+ run : |
237+ curl -sL https://sentry.io/get-cli/ | bash
238+ sentry-cli debug-files upload -o ${{ env.SENTRY_ORG }} -p ${{ env.SENTRY_PROJECT }} release/cap_desktop.pdb
239+
231240 done :
232241 needs : [draft, build]
233242 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments