Skip to content

Commit d9bd9e1

Browse files
committed
Disable notarize
1 parent 6895c95 commit d9bd9e1

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
@@ -172,7 +172,7 @@ build() {
172172
)
173173

174174
pushd build_macos
175-
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]] {
175+
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]] {
176176
run_xcodebuild ${archive_args}
177177
run_xcodebuild ${export_args}
178178
} 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)