Skip to content

Commit d2cd250

Browse files
committed
Disable notarize
1 parent f1cd4b6 commit d2cd250

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/.build.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ build() {
176176
)
177177

178178
pushd build_macos
179-
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]] {
179+
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]] {
180180
run_xcodebuild ${archive_args}
181181
run_xcodebuild ${export_args}
182182
} else {

.github/workflows/build-project.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
;;
3838
push)
3939
config_data=('codesign:true' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
40-
if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]]; then
40+
if [[ ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]]; then
4141
config_data[1]='notarize:true'
4242
config_data[3]='config:Release'
4343
fi

0 commit comments

Comments
 (0)