Skip to content

Commit f3d4209

Browse files
committed
Add publicReleaseRefSpec to version.json
Added a new key-value pair `"publicReleaseRefSpec": ["^refs/heads/master$"]` to `version.json` to specify that public releases will be based on the `master` branch. Also fixed a JSON syntax error by adding a missing comma after the `"version": "1.0.0"` line.
1 parent 2561529 commit f3d4209

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

version.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.0.0"
3+
"version": "1.0.0",
4+
"publicReleaseRefSpec": [
5+
"^refs/heads/master$"
6+
]
47
}

0 commit comments

Comments
 (0)