1
0
mirror of https://github.com/stackrox/kube-linter-action.git synced 2026-07-04 23:51:37 +00:00

Merge pull request #4 from stackrox/neilcar/add-output-file

Add output-file
This commit is contained in:
neilcar
2021-04-15 11:58:56 -04:00
committed by GitHub
+10 -7
View File
@@ -7,10 +7,10 @@ inputs:
config:
description: 'Path to config file'
required: false
outputs:
lint-txt:
description: 'Output from linting'
value: ${{ steps.lint.outputs.lint-txt }}
output-file:
description: 'Filename to store output. Default "kubelinter.log"'
required: false
default: 'kubelinter.log'
runs:
using: "composite"
steps:
@@ -22,14 +22,17 @@ runs:
curl -s -L -o kube-linter-linux.tar.gz $LOCATION
tar -xf kube-linter-linux.tar.gz -C "${GITHUB_WORKSPACE}/"
shell: bash
- id: lint
- name: Lint files
id: lint
run: |
set +e
cd "${GITHUB_WORKSPACE}"
if [ -z ${{ inputs.config }} ]; then
export CONFIG=""
else
export CONFIG="--config ${{ inputs.config }}"
fi
./kube-linter $CONFIG lint ${{ inputs.directory }}
./kube-linter $CONFIG lint ${{ inputs.directory }} 2>&1 | tee ${{ inputs.output-file }}
result_code=${PIPESTATUS[0]}
exit $result_code
shell: bash