diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39cd48565..c0b7b0931 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,7 @@ on: - main tags: - 'v*.*.*' + - 'v*.*.*-*' paths: - '**/*.*' - '!**/*.md' diff --git a/build/Build.CI.GitHubActions.cs b/build/Build.CI.GitHubActions.cs index c25186ee0..07782e1b3 100644 --- a/build/Build.CI.GitHubActions.cs +++ b/build/Build.CI.GitHubActions.cs @@ -18,7 +18,7 @@ //GitHubActionsImage.UbuntuLatest, //GitHubActionsImage.MacOsLatest, OnPushBranches = new[] { "master", "main" }, - OnPushTags = new[] { "v*.*.*" }, + OnPushTags = new[] { "v*.*.*", "v*.*.*-*" }, OnPushIncludePaths = new[] { "**/*.*" }, OnPushExcludePaths = new[] { "**/*.md" }, PublishArtifacts = true,