Do the rest of the release, even if this fails

This commit is contained in:
Matt Burke
2015-12-08 15:05:36 -05:00
parent c6e800af26
commit cf383c3bcf
+1 -1
View File
@@ -155,7 +155,7 @@
<!-- Internal: Create a release on github.com -->
<Target Name="ReleaseOnGitHub" DependsOnTargets="VersionRequired; AuthTokenRequired; MSBuildCommunityTasks">
<CreateRelease Condition="'$(DryRun)' == 'False'" Repository="$(GitHubOwner)/$(GitHubRepository)" TagName="v$(Version)" Files="@(ArchiveFile)" OauthToken="$(GitHubAuthToken)" ReleaseNotesFile="$(ReleaseNotes)" />
<CreateRelease Condition="'$(DryRun)' == 'False'" Repository="$(GitHubOwner)/$(GitHubRepository)" TagName="v$(Version)" Files="@(ArchiveFile)" OauthToken="$(GitHubAuthToken)" ReleaseNotesFile="$(ReleaseNotes)" ContinueOnError="ErrorAndContinue" />
<Message Condition="'$(DryRun)' != 'False'" Text="(would create release on github.com)" />
</Target>