Skip to content

Instantly share code, notes, and snippets.

@JanDeDobbeleer
Last active April 6, 2016 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JanDeDobbeleer/1d0ccba14d229eccab3670e2f8e10ed5 to your computer and use it in GitHub Desktop.
Save JanDeDobbeleer/1d0ccba14d229eccab3670e2f8e10ed5 to your computer and use it in GitHub Desktop.
psake nested builds template
Task Default -Depends ProductionCI
Task ProductionCI {
Invoke-psake build.ps1 CI -properties @{
# add the properties you need
}
}
Task ProductionCD {
Invoke-psake build.ps1 CD -properties @{
# add the properties you need
}
}
Task BetaCD {
Invoke-psake build.ps1 CD -properties @{
# add the properties you need
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment