From bb440b23b617105601c2be5cfb51bb01a2efdbcd Mon Sep 17 00:00:00 2001 From: Henne Vogelsang Date: Wed, 22 Feb 2023 13:03:05 +0000 Subject: [PATCH] Update deployment process --- .octopus/deployment_process.ocl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.octopus/deployment_process.ocl b/.octopus/deployment_process.ocl index e69de29b..1363d94c 100644 --- a/.octopus/deployment_process.ocl +++ b/.octopus/deployment_process.ocl @@ -0,0 +1,20 @@ +step "hello-world-using-bash" { + name = "Hello world (using Bash)" + + action { + action_type = "Octopus.Script" + is_required = true + properties = { + Octopus.Action.RunOnServer = "true" + Octopus.Action.Script.ScriptBody = <<-EOT + echo 'Hello world, using Bash' + + #TODO: Experiment with steps of your own :) + + echo '[Learn more about the types of steps available in Octopus](https://oc.to/OnboardingAddStepsLearnMore)' + EOT + Octopus.Action.Script.ScriptSource = "Inline" + Octopus.Action.Script.Syntax = "Bash" + } + } +} \ No newline at end of file