File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,22 +31,22 @@ jobs:
3131 config_data=('codesign:false' 'notarize:false' 'package:false' 'config:RelWithDebInfo')
3232 if gh pr view ${{ github.event.number }} --json labels \
3333 | jq -e -r '.labels[] | select(.name == "Seeking Testers")' > /dev/null; then
34- config_data[0]='codesign:true'
34+ : config_data[0]='codesign:true'
3535 config_data[2]='package:true'
3636 fi
3737 ;;
3838 push)
39- config_data=('codesign:true ' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
39+ config_data=('codesign:false ' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
4040 if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]]; then
41- config_data[1]='notarize:true'
41+ : config_data[1]='notarize:true'
4242 config_data[3]='config:Release'
4343 fi
4444 ;;
4545 workflow_dispatch)
46- config_data=('codesign:true ' 'notarize:false' 'package:false' 'config:RelWithDebInfo')
46+ config_data=('codesign:false ' 'notarize:false' 'package:false' 'config:RelWithDebInfo')
4747 ;;
4848 schedule)
49- config_data=('codesign:true ' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
49+ config_data=('codesign:false ' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
5050 ;;
5151 *) ;;
5252 esac
You can’t perform that action at this time.
0 commit comments