Created
September 6, 2016 13:59
-
-
Save dcomartin/5d63d32bd2b603a998f8e9a0eeef6738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Task("OctoRelease") | |
.IsDependentOn("OctoPush") | |
.Does(() => { | |
OctoCreateRelease("CakeDemo", new CreateReleaseSettings { | |
Server = "http://your.octopusdeploy.server/", | |
ApiKey = "YOUR_API_KEY", | |
ReleaseNumber = "0.0.0.1" | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment