mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
20 lines
No EOL
686 B
Text
20 lines
No EOL
686 B
Text
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"
|
|
}
|
|
}
|
|
} |