Skip to content

Commit

Permalink
release process improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
cwe1ss committed Sep 10, 2018
1 parent 35617ca commit ce233b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release Process

The release process consists of these steps:
1. Create a GitHub release with release notes. The tag name must be a semantic version, prefixed with "v" - e.g. `v0.1.0` or `v0.1.0-rc1`
1. Wait for the AppVeyor build to finish the *tag* build: https://ci.appveyor.com/project/opentracing/csharp-netcore
1. As a signed-in AppVeyor user, click "Deploy" on the build details page and select "NuGet (OpenTracing)".
This will upload the packages to NuGet.org
2 changes: 1 addition & 1 deletion version.props
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
<VersionSuffix Condition="'$(APPVEYOR_BUILD_NUMBER)' != ''">ci$([System.Int32]::Parse($(APPVEYOR_BUILD_NUMBER)).ToString('D4'))</VersionSuffix>

<!-- Overwrite everything if there's an AppVeyor tag -->
<Version Condition="'$(APPVEYOR_REPO_TAG_NAME)' != ''">$(APPVEYOR_REPO_TAG_NAME)</Version>
<Version Condition="'$(APPVEYOR_REPO_TAG_NAME)' != ''">$(APPVEYOR_REPO_TAG_NAME.TrimStart('v'))</Version>
</PropertyGroup>
</Project>

0 comments on commit ce233b8

Please sign in to comment.