Skip to content

Commit

Permalink
Disable notarization for release builds and switch to RelWithDebInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
WarmUpTill committed Feb 24, 2024
1 parent 85505f4 commit 958b63e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
push)
config_data=('codesign:true' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]]; then
config_data[1]='notarize:true'
config_data[3]='config:Release'
config_data[1]='notarize:false'
config_data[3]='config:RelWithDebInfo'
fi
;;
workflow_dispatch)
Expand Down

0 comments on commit 958b63e

Please sign in to comment.