Skip to content

Commit

Permalink
Update deployment process
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson authored and Octopus Deploy committed May 28, 2021
1 parent 61c478a commit 9be774d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .octopus/Random Quotes DotNET Core/deployment_process.ocl
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
steps "Deploy an Azure App Service" {
properties = {
Octopus.Action.TargetRoles = "webapp"
}


actions "Deploy an Azure App Service" {
action_type = "Octopus.AzureAppService"
properties = {
Octopus.Action.Azure.DeploymentType = "Package"
Octopus.Action.Package.DownloadOnTentacle = "False"
Octopus.Action.Package.FeedId = "Octopus Server (built-in)"
Octopus.Action.Package.PackageId = "randomquotes"
Octopus.Action.RunOnServer = "true"
}

worker_pool_id_or_name = "Hosted Ubuntu"

packages {
acquisition_location = "Server"
feed_id_or_name = "Octopus Server (built-in)"
package_id = "randomquotes"
properties = {
SelectionMode = "immediate"
}

}
}
}

0 comments on commit 9be774d

Please sign in to comment.