AppCenter:如果提交消息包含特定字符串则构建
AppCenter: build if commit message contains a specific string
是否可以将 Microsoft AppCenter 配置为在“每次推送时构建此分支”上设置构建频率,但如果提交消息包含每次推送的特定字符串,则进行构建。
您可以为此使用以下逻辑:
if ("git show $gitCommit || grep "regex" == false)
// { your code } do not deploy
else
// deploy
您可以添加 pre-build 脚本,进行检查然后在需要时调用 exit 1
,
是否可以将 Microsoft AppCenter 配置为在“每次推送时构建此分支”上设置构建频率,但如果提交消息包含每次推送的特定字符串,则进行构建。
您可以为此使用以下逻辑:
if ("git show $gitCommit || grep "regex" == false)
// { your code } do not deploy
else
// deploy
您可以添加 pre-build 脚本,进行检查然后在需要时调用 exit 1
,