osem-fcy/.octopus/deployment_process.ocl
Henne Vogelsang 50252490e6 Update steps
2023-02-22 16:41:57 +00:00

22 lines
No EOL
803 B
Text

step "hello-world-using-bash" {
name = "Hello world (using Bash)"
action {
action_type = "Octopus.Script"
environments = ["staging"]
is_required = true
properties = {
Octopus.Action.EnabledFeatures = "Octopus.Features.SubstituteInFiles"
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"
}
}
}