Skip to content

Commit fbca4c4

Browse files
docs(contributing): update
1 parent 8a8eb7a commit fbca4c4

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

.github/CONTRIBUTING.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,19 @@ or in the case of multiple issues:
7373
Closes #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`

0 commit comments

Comments
 (0)