File tree Expand file tree Collapse file tree 5 files changed +648
-70
lines changed Expand file tree Collapse file tree 5 files changed +648
-70
lines changed Original file line number Diff line number Diff line change @@ -220,13 +220,22 @@ jobs:
220
220
TAURI_BUNDLE_PATH : ../..
221
221
222
222
- name : Upload debug symbols to Sentry
223
- if : ${{ matrix.settings.runner == 'macos-latest' }}
223
+ if : ${{ runner.os == 'macOS' }}
224
+ shell : bash
224
225
env :
225
226
SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
226
- working-directory : target
227
227
run : |
228
228
curl -sL https://sentry.io/get-cli/ | bash
229
- sentry-cli debug-files upload -o ${{ env.SENTRY_ORG }} -p ${{ env.SENTRY_PROJECT }} Cap.dSYM
229
+ sentry-cli debug-files upload -o ${{ env.SENTRY_ORG }} -p ${{ env.SENTRY_PROJECT }} target/Cap.dSYM
230
+
231
+ - name : Upload debug symbols to Sentry
232
+ if : ${{ runner.os == 'Windows' }}
233
+ shell : bash
234
+ env :
235
+ SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
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 }} target/${{ matrix.settings.target }}/release/cap_desktop.pdb
230
239
231
240
done :
232
241
needs : [draft, build]
You can’t perform that action at this time.
0 commit comments