File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: step-type
3
3
metadata :
4
4
name : codefresh-run
5
5
title : Run a Codefresh pipeline
6
- version : 1.5.3
6
+ version : 1.5.4
7
7
isPublic : true
8
8
description : Run a Codefresh pipeline by ID or name and attach the created build logs.
9
9
sources :
55
55
"type": "string",
56
56
"description": "Custom image of codefresh-run step",
57
57
"examples": ["latest-debian"],
58
- "default": "0.84.7 "
58
+ "default": "0.89.0 "
59
59
},
60
60
"PIPELINE_ID": {
61
61
"type": "string",
@@ -137,6 +137,15 @@ spec:
137
137
"examples": ["key=val"],
138
138
"default": []
139
139
},
140
+ "SECRET": {
141
+ "type": "array",
142
+ "items": {
143
+ "type": "string"
144
+ },
145
+ "description": "Set build secrets.",
146
+ "examples": ["key=val"],
147
+ "default": []
148
+ },
140
149
"VARIABLE_FILE": {
141
150
"type": "string",
142
151
"description": "Import build variables from a file.",
@@ -217,6 +226,9 @@ spec:
217
226
[[ range .Arguments.VARIABLE ]]
218
227
[[- $cmd = (printf "%s --variable %s" $cmd .) -]]
219
228
[[- end -]]
229
+ [[ range .Arguments.SECRET ]]
230
+ [[- $cmd = (printf "%s --secret %s" $cmd .) -]]
231
+ [[- end -]]
220
232
[[ if .Arguments.VARIABLE_FILE ]]
221
233
[[- $cmd = (printf "%s --var-file %s" $cmd .Arguments.VARIABLE_FILE) -]]
222
234
[[- end -]]
You can’t perform that action at this time.
0 commit comments