We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bceb4be commit e05f27eCopy full SHA for e05f27e
.github/workflows/ci.yml
@@ -101,6 +101,15 @@ jobs:
101
name: Win64-Breakpad-sdk
102
path: plugin-dev/Source/ThirdParty/Win64/Breakpad
103
104
+ # Workaround for https://github.com/actions/download-artifact/issues/14
105
+ # Adding execute permission for crashpad before preparing final packages
106
+ # allows to avoid issues with plugin initialization on Unix-based systems.
107
+ - name: Set permissions for crashpad_handler
108
+ shell: pwsh
109
+ run: |
110
+ chmod +x plugin-dev/Source/ThirdParty/Linux/bin/crashpad_handler
111
+ chmod +x plugin-dev/Source/ThirdParty/LinuxArm64/bin/crashpad_handler
112
+
113
- name: Prepare Sentry packages for release
114
shell: pwsh
115
run: ./scripts/packaging/pack.ps1
0 commit comments