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" } } }