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
33metadata :
44 name : codefresh-run
55 title : Run a Codefresh pipeline
6- version : 1.5.3
6+ version : 1.5.4
77 isPublic : true
88 description : Run a Codefresh pipeline by ID or name and attach the created build logs.
99 sources :
5555 "type": "string",
5656 "description": "Custom image of codefresh-run step",
5757 "examples": ["latest-debian"],
58- "default": "0.84.7 "
58+ "default": "0.89.0 "
5959 },
6060 "PIPELINE_ID": {
6161 "type": "string",
@@ -137,6 +137,15 @@ spec:
137137 "examples": ["key=val"],
138138 "default": []
139139 },
140+ "SECRET": {
141+ "type": "array",
142+ "items": {
143+ "type": "string"
144+ },
145+ "description": "Set build secrets.",
146+ "examples": ["key=val"],
147+ "default": []
148+ },
140149 "VARIABLE_FILE": {
141150 "type": "string",
142151 "description": "Import build variables from a file.",
@@ -217,6 +226,9 @@ spec:
217226 [[ range .Arguments.VARIABLE ]]
218227 [[- $cmd = (printf "%s --variable %s" $cmd .) -]]
219228 [[- end -]]
229+ [[ range .Arguments.SECRET ]]
230+ [[- $cmd = (printf "%s --secret %s" $cmd .) -]]
231+ [[- end -]]
220232 [[ if .Arguments.VARIABLE_FILE ]]
221233 [[- $cmd = (printf "%s --var-file %s" $cmd .Arguments.VARIABLE_FILE) -]]
222234 [[- end -]]
You can’t perform that action at this time.
0 commit comments