diff options
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/deadnix/task.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tasks/deadnix/task.yml b/tasks/deadnix/task.yml new file mode 100644 index 0000000..e7750cc --- /dev/null +++ b/tasks/deadnix/task.yml @@ -0,0 +1,22 @@ +--- +platform: linux +image_resource: + type: registry-image + source: + repository: docker.io/chn2guevara/nixci + tag: latest + +inputs: + - name: file-paths + +run: + path: bash + args: + - -eufo + - pipefail + - -c + - | + deadnix -L --fail ${FILE_PATHS} + +params: + FILE_PATHS: file-paths |