We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6895c95 commit d9bd9e1Copy full SHA for d9bd9e1
2 files changed
.github/scripts/.build.zsh
@@ -172,7 +172,7 @@ build() {
172
)
173
174
pushd build_macos
175
- 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).+)? ]] {
176
run_xcodebuild ${archive_args}
177
run_xcodebuild ${export_args}
178
} 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