diff --git a/.drone.jsonnet b/.drone.jsonnet index b0a9988..1beac8b 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -86,9 +86,9 @@ local manifest() = { { name: "validate ucDevices", image: "fftdf/docker-json-validate", - commands: { - jsonlint ucDevices.json, - }, + commands: [ + "jsonlint ucDevices.json" + ], when: { event: "push" }, @@ -96,9 +96,9 @@ local manifest() = { { name: "validate Devices", image: "fftdf/docker-json-validate", - commands: { - jsonlint devices.json, - }, + commands: [ + "jsonlint devices.json", + ], when: { event: "push" },