Skip to content

Commit 60ab651

Browse files
Change output format to string
1 parent a7b4122 commit 60ab651

File tree

1 file changed

+6
-14
lines changed
  • incubating/octopusdeploy-create-package

1 file changed

+6
-14
lines changed

incubating/octopusdeploy-create-package/step.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,14 @@ spec:
8383
"definitions": {},
8484
"$schema": "http://json-schema.org/draft-07/schema#",
8585
"type": "object",
86-
"additionalProperties": true,
8786
"patterns": [],
8887
"required": [
89-
"FILE"
88+
"PATH"
9089
],
9190
"properties": {
92-
"FILE": {
93-
"additionalProperties": true,
94-
"type": "object",
95-
"description": "The zip file that was created",
96-
"properties": {
97-
"Path": {
98-
"type": "string",
99-
"description": "The path to the zip file"
100-
}
101-
}
91+
"PATH": {
92+
"type": "string",
93+
"description": "The zip file path that was created"
10294
}
10395
}
10496
}
@@ -115,9 +107,9 @@ spec:
115107
[[- if .Arguments.OUT_FOLDER ]] --out-folder "[[ .Arguments.OUT_FOLDER ]]" [[ end ]]
116108
[[- range $val := .Arguments.INCLUDE ]] --include "[[ $val ]]" [[ end ]]
117109
[[- if .Arguments.OVERWRITE ]] --overwrite [[ end ]]
118-
--output-format json
110+
--output-format basic
119111
--no-prompt)
120-
- cf_export FILE=$OUTPUT
112+
- cf_export PATH="$OUTPUT"
121113
delimiters:
122114
left: "[["
123115
right: "]]"

0 commit comments

Comments
 (0)