Skip to content

Commit 10cc2ca

Browse files
committed
housekeeping: Allow releases from a patch branch
1 parent a7aff5a commit 10cc2ca

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Release
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
7+
- patches/*
68

79
env:
810
productNamespacePrefix: "Splat"

version.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"^refs/heads/main$",
77
"^refs/heads/latest$",
88
"^refs/heads/preview/.*", // we release previews
9+
"^refs/heads/patches/.*", // we release previews
910
"^refs/heads/rel/\\d+\\.\\d+\\.\\d+" // we also release branches starting with rel/N.N.N
1011
],
1112
"nugetPackageVersion":{

0 commit comments

Comments
 (0)