Skip to content

Commit 1e6c4b5

Browse files
alxmitchOctopus Deploy
authored and
Octopus Deploy
committed
Initial commit of deployment process
1 parent d523291 commit 1e6c4b5

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
step "run-a-script" {
2+
name = "Run a Script"
3+
4+
action {
5+
action_type = "Octopus.Script"
6+
properties = {
7+
Octopus.Action.Script.ScriptBody = "echo \"Hello World!\""
8+
Octopus.Action.Script.ScriptSource = "Inline"
9+
Octopus.Action.Script.Syntax = "Bash"
10+
}
11+
worker_pool = "hosted-ubuntu"
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
connectivity_policy {
2+
allow_deployments_to_no_targets = true
3+
}
4+
5+
versioning_strategy {
6+
template = "#{Octopus.Version.LastMajor}.#{Octopus.Version.LastMinor}.#{Octopus.Version.NextPatch}"
7+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
version = 9

.octopus/test-project/variables.ocl

Whitespace-only changes.

0 commit comments

Comments
 (0)