diff --git a/GitReleaseManager.yaml b/GitReleaseManager.yaml new file mode 100644 index 0000000..a57282e --- /dev/null +++ b/GitReleaseManager.yaml @@ -0,0 +1,19 @@ +create: + include-footer: true + footer-heading: Where to get it + footer-content: You can download this release from [nuget.org](https://www.nuget.org/packages/Cake.AppleSimulator.SushiHangover/) + footer-includes-milestone: true + milestone-replace-text: '{milestone}' +export: + include-created-date-in-title: false + created-date-string-format: + perform-regex-removal: false + regex-text: + multiline-regex: false +issue-labels-include: +- Bug +- Feature +- Improvement +issue-labels-exclude: +- Internal Refactoring + diff --git a/README.md b/README.md index 262a22b..a219616 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,14 @@ Cake Build addin for managing (simctl) Apple iOS/watchOS/TV simulators. +##Nuget: + +`PM> Install-Package Cake.AppleSimulator.SushiHangover` + +Ref: [https://www.nuget.org/packages/Cake.AppleSimulator.SushiHangover/](https://www.nuget.org/packages/Cake.AppleSimulator.SushiHangover/) + + + ## Installation Add the following reference to your cake build script: diff --git a/appveyor.yml b/appveyor.yml index 5afa386..a838476 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,5 +10,4 @@ build_script: - ps: ./build.ps1 -Verbosity Diagnostic test: off artifacts: -- path: '**/bin/*' - path: artifacts/* diff --git a/build.cake b/build.cake index 7eb04d1..500aee0 100644 --- a/build.cake +++ b/build.cake @@ -181,12 +181,10 @@ Task("Build") Task("UpdateAppVeyorBuildNumber") .WithCriteria(() => isRunningOnAppVeyor) - .WithCriteria(() => isReleaseBranch) - .WithCriteria(() => isTagged) .Does(() => { - Information("{0}", semVersion); - AppVeyor.UpdateBuildVersion(semVersion); + Information("{0}", buildVersion); + AppVeyor.UpdateBuildVersion(buildVersion); }); Task("UpdateAssemblyInfo")