Update deployment process
This commit is contained in:
parent
a882b3e1e4
commit
bb440b23b6
1 changed files with 20 additions and 0 deletions
|
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue