File tree Expand file tree Collapse file tree 1 file changed +16
-9
lines changed
Expand file tree Collapse file tree 1 file changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -73,12 +73,19 @@ or in the case of multiple issues:
7373Closes #123, #245, #992
7474```
7575
76- ## Publishing a release
77-
78- 1 . Create a new chapter in ` CHANGELOG.md `
79- 1 . Update the version in ` Directory.Build.props `
80- 1 . Create a git commit using the message format ` release <major.minor.patch> `
81- 1 . Create an annotated tag using the command ` git tag -a v<major.minor.patch> ` , and use the commit message ` v<major.minor.patch> `
82- 1 . Push the commit and tag using the command ` git push --follow-tags `
83- 1 . The NuGet package and its symbols will be pushed by CD
84- 1 . Update the GitHub release with the information found in ` CHANGELOG.md `
76+ ## Creating a release
77+
78+ Update the following files:
79+
80+ - ` CHANGELOG.md `
81+ - ` Directory.Build.props `
82+
83+ Commit the files with a git commit message saying ` release v<major>.<minor>.<patch> ` , and then run the following commands:
84+
85+ ```
86+ git tag -a v<major>.<minor>.<patch> -m v<major>.<minor>.<patch> -s
87+ git push --follow-tags
88+ ```
89+
90+ - The NuGet package and its symbols will be pushed by CD
91+ - Update the GitHub release with the information found in ` CHANGELOG.md `
You can’t perform that action at this time.
0 commit comments