diff options
author | Christian Segundo | 2024-02-25 21:43:13 +0100 |
---|---|---|
committer | Christian Segundo | 2024-02-25 22:00:19 +0100 |
commit | 518a4d122887a67ad1d948e3a32be4c71c0d9790 (patch) | |
tree | dd58242f12235118c3509824da18c17bcae316ec /tasks/deadnix/task.yml | |
parent | 26406369f4d643a610c67e220811ba06f71c3efe (diff) | |
download | concourse-518a4d122887a67ad1d948e3a32be4c71c0d9790.tar.gz |
add deadnix
Diffstat (limited to 'tasks/deadnix/task.yml')
-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 |