@@ -4,7 +4,6 @@ step "notify-octopus-library-on-slack" {
4
4
5
5
action "notify-octopus-library-on-slack-1" {
6
6
properties = {
7
- Octopus.Action.RunOnServer = "true"
8
7
Octopus.Action.Template.Id = "ActionTemplates-404"
9
8
Octopus.Action.Template.Version = "12"
10
9
OctopusUseBundledTooling = "False"
@@ -33,37 +32,13 @@ step "notify-octopus-library-on-slack" {
33
32
}
34
33
35
34
step "clear-staging-slot" {
36
- condition = "Always"
37
35
name = "Clear Staging slot"
38
36
start_trigger = "StartWithPrevious"
39
37
40
- action "clear-staging-slot-1" {
41
- action_type = "Octopus.AzurePowerShell"
42
- is_disabled = true
43
- properties = {
44
- Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
45
- Octopus.Action.RunOnServer = "false"
46
- Octopus.Action.Script.ScriptBody = <<-EOT
47
- #Remove the staging slot if it exists
48
- Remove-AzureRmWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging -Force
49
-
50
- #Create the staging slot
51
- New-AzureRmWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging
52
- EOT
53
- Octopus.Action.Script.ScriptSource = "Inline"
54
- Octopus.Action.Script.Syntax = "PowerShell"
55
- }
56
- }
57
- }
58
-
59
- step "clear-staging-slot-az" {
60
- name = "Clear Staging slot - az"
61
-
62
38
action {
63
39
action_type = "Octopus.AzurePowerShell"
64
40
properties = {
65
41
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
66
- Octopus.Action.RunOnServer = "true"
67
42
Octopus.Action.Script.ScriptBody = <<-EOT
68
43
#Remove the staging slot if it exists
69
44
Remove-AzWebAppSlot -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName} -Slot Staging -Force
@@ -93,6 +68,7 @@ step "deploy-octopus-library" {
93
68
94
69
action "deploy-octopus-library-1" {
95
70
action_type = "Octopus.AzureWebApp"
71
+ is_disabled = true
96
72
properties = {
97
73
Octopus.Action.Azure.DeploymentSlot = "#{AzureSlotName}"
98
74
Octopus.Action.Azure.PreserveAppData = "True"
@@ -102,7 +78,6 @@ step "deploy-octopus-library" {
102
78
Octopus.Action.Package.DownloadOnTentacle = "False"
103
79
Octopus.Action.Package.FeedId = "octopus-server-built-in"
104
80
Octopus.Action.Package.PackageId = "Octopus.Library"
105
- Octopus.Action.RunOnServer = "true"
106
81
Octopus.Action.SubstituteInFiles.TargetFiles = "views\\index.pug"
107
82
OctopusUseBundledTooling = "False"
108
83
}
@@ -132,18 +107,22 @@ step "deploy-octopus-library-new-app-service-step" {
132
107
133
108
action "deploy-octopus-library-new-app-service-step-1" {
134
109
action_type = "Octopus.AzureAppService"
135
- is_disabled = true
136
110
properties = {
137
111
Octopus.Action.Azure.DeploymentSlot = "#{AzureSlotName}"
138
112
Octopus.Action.Azure.DeploymentType = "Package"
139
113
Octopus.Action.EnabledFeatures = "Octopus.Features.JsonConfigurationVariables,Octopus.Features.ConfigurationTransforms,Octopus.Features.SubstituteInFiles"
140
114
Octopus.Action.Package.DownloadOnTentacle = "False"
141
115
Octopus.Action.Package.FeedId = "octopus-server-built-in"
142
116
Octopus.Action.Package.PackageId = "Octopus.Library"
143
- Octopus.Action.RunOnServer = "false"
144
117
Octopus.Action.SubstituteInFiles.TargetFiles = "views\\index.pug"
118
+ OctopusUseBundledTooling = "False"
119
+ }
120
+ worker_pool = "hosted-windows"
121
+
122
+ container {
123
+ feed = "registered-dockerhub"
124
+ image = "octopusdeploy/worker-tools:windows.ltsc2022"
145
125
}
146
- worker_pool_variable = ""
147
126
148
127
packages {
149
128
acquisition_location = "Server"
@@ -161,7 +140,6 @@ step "http-invoke-url" {
161
140
162
141
action "http-invoke-url-1" {
163
142
properties = {
164
- Octopus.Action.RunOnServer = "true"
165
143
Octopus.Action.Template.Id = "ActionTemplates-102"
166
144
Octopus.Action.Template.Version = "2"
167
145
OctopusUseBundledTooling = "False"
@@ -181,7 +159,6 @@ step "notify-octopus-library-of-manual-intervention" {
181
159
182
160
action "notify-octopus-library-of-manual-intervention-1" {
183
161
properties = {
184
- Octopus.Action.RunOnServer = "true"
185
162
Octopus.Action.Template.Id = "ActionTemplates-404"
186
163
Octopus.Action.Template.Version = "12"
187
164
OctopusUseBundledTooling = "False"
@@ -239,27 +216,10 @@ step "confirm-changes-on-staging-slot" {
239
216
step "swap-staging-slot-to-production" {
240
217
name = "Swap Staging slot to Production"
241
218
242
- action "swap-staging-slot-to-production-1" {
243
- action_type = "Octopus.AzurePowerShell"
244
- is_disabled = true
245
- properties = {
246
- Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
247
- Octopus.Action.RunOnServer = "false"
248
- Octopus.Action.Script.ScriptBody = "Switch-AzureRmWebAppSlot -SourceSlotName Staging -DestinationSlotName Production -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName}"
249
- Octopus.Action.Script.ScriptSource = "Inline"
250
- Octopus.Action.Script.Syntax = "PowerShell"
251
- }
252
- }
253
- }
254
-
255
- step "swap-staging-slot-to-production-az" {
256
- name = "Swap Staging slot to Production - az"
257
-
258
219
action {
259
220
action_type = "Octopus.AzurePowerShell"
260
221
properties = {
261
222
Octopus.Action.Azure.AccountId = "team-steps-production-service-principal"
262
- Octopus.Action.RunOnServer = "true"
263
223
Octopus.Action.Script.ScriptBody = "Switch-AzWebAppSlot -SourceSlotName Staging -DestinationSlotName Production -ResourceGroupName #{AzureResourceGroupName} -Name #{AzureSiteName}"
264
224
Octopus.Action.Script.ScriptSource = "Inline"
265
225
Octopus.Action.Script.Syntax = "PowerShell"
@@ -280,7 +240,6 @@ step "http-invoke-url-production" {
280
240
281
241
action "http-invoke-url-production-1" {
282
242
properties = {
283
- Octopus.Action.RunOnServer = "true"
284
243
Octopus.Action.Template.Id = "ActionTemplates-102"
285
244
Octopus.Action.Template.Version = "2"
286
245
OctopusUseBundledTooling = "False"
@@ -305,7 +264,6 @@ step "github-create-release" {
305
264
gitHubApiKey = "#{GitHubApiKey}"
306
265
gitHubRepository = "#{GitHubRepository}"
307
266
gitHubUsername = "#{GitHubOwner}"
308
- Octopus.Action.RunOnServer = "true"
309
267
Octopus.Action.Template.Id = "ActionTemplates-61"
310
268
Octopus.Action.Template.Version = "4"
311
269
OctopusUseBundledTooling = "False"
@@ -329,7 +287,6 @@ step "github-clean-vnext-milestone" {
329
287
action "github-clean-vnext-milestone-1" {
330
288
action_type = "Octopus.Script"
331
289
properties = {
332
- Octopus.Action.RunOnServer = "true"
333
290
Octopus.Action.Script.ScriptBody = <<-EOT
334
291
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
335
292
@@ -399,7 +356,6 @@ step "notify-octopus-library-of-deployment-result" {
399
356
400
357
action "notify-octopus-library-of-deployment-result-1" {
401
358
properties = {
402
- Octopus.Action.RunOnServer = "true"
403
359
Octopus.Action.Template.Id = "ActionTemplates-404"
404
360
Octopus.Action.Template.Version = "12"
405
361
OctopusUseBundledTooling = "False"
0 commit comments