Skip to content

Commit 8bf9b2d

Browse files
committed
Disable notarization for release builds and switch to RelWithDebInfo
1 parent 1e43ffe commit 8bf9b2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-project.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
push)
4646
config_data=('codesign:true' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
4747
if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]]; then
48-
config_data[1]='notarize:true'
49-
config_data[3]='config:Release'
48+
config_data[1]='notarize:false'
49+
config_data[3]='config:RelWithDebInfo'
5050
fi
5151
;;
5252
workflow_dispatch)

0 commit comments

Comments
 (0)