Update deployment process

This commit is contained in:
Henne Vogelsang 2023-02-22 13:03:05 +00:00 committed by Octopus Deploy
parent a882b3e1e4
commit bb440b23b6

View file

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