From 9be774d2cd3f43cc82b7d4da98d00ca986c4be11 Mon Sep 17 00:00:00 2001 From: Matthew Casperson Date: Fri, 28 May 2021 03:23:25 +0000 Subject: [PATCH] Update deployment process --- .../deployment_process.ocl | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.octopus/Random Quotes DotNET Core/deployment_process.ocl b/.octopus/Random Quotes DotNET Core/deployment_process.ocl index e69de29..c9584be 100644 --- a/.octopus/Random Quotes DotNET Core/deployment_process.ocl +++ b/.octopus/Random Quotes DotNET Core/deployment_process.ocl @@ -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" + } + + } + } +} \ No newline at end of file