We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1cd4b6 commit d2cd250Copy full SHA for d2cd250
2 files changed
.github/scripts/.build.zsh
@@ -176,7 +176,7 @@ build() {
176
)
177
178
pushd build_macos
179
- if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]] {
+ if [[ ${GITHUB_EVENT_NAME} == push && ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]] {
180
run_xcodebuild ${archive_args}
181
run_xcodebuild ${export_args}
182
} else {
.github/workflows/build-project.yaml
@@ -37,7 +37,7 @@ jobs:
37
;;
38
push)
39
config_data=('codesign:true' 'notarize:false' 'package:true' 'config:RelWithDebInfo')
40
- if [[ ${GITHUB_REF_NAME} =~ [0-9]+.[0-9]+.[0-9]+(-(rc|beta).+)? ]]; then
+ if [[ ${GITHUB_REF_NAME} =~ [0-9]+-[0-9]+-[0-9]+(-(rc|beta).+)? ]]; then
41
config_data[1]='notarize:true'
42
config_data[3]='config:Release'
43
fi
0 commit comments