Skip to content

Commit 8b1c312

Browse files
committed
Disable notarize
1 parent aa4ea1a commit 8b1c312

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
@@ -177,7 +177,7 @@ build() {
177177
)
178178

179179
pushd build_macos
180-
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]] {
180+
if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]] {
181181
run_xcodebuild ${archive_args}
182182
run_xcodebuild ${export_args}
183183
} 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)