Skip to content

Commit

Permalink
Merge pull request #6 from sushihangover/develop
Browse files Browse the repository at this point in the history
Setup appveyor and GitReleaseManager
  • Loading branch information
sushihangover authored Dec 13, 2016
2 parents d3aa997 + be9790d commit 813a4d7
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
19 changes: 19 additions & 0 deletions GitReleaseManager.yaml
Original file line number Diff line number Diff line change
@@ -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

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ build_script:
- ps: ./build.ps1 -Verbosity Diagnostic
test: off
artifacts:
- path: '**/bin/*'
- path: artifacts/*
6 changes: 2 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 813a4d7

Please sign in to comment.