Merge remote-tracking branch 'origin/master' into log-output

This commit is contained in:
Ilir Bekteshi 2021-10-07 09:18:08 +02:00
commit cda5fe54c7

4
entrypoint.sh Executable file → Normal file
View file

@ -1,5 +1,4 @@
#!/bin/bash -l #!/bin/bash -l
set -o pipefail
echo "======================" echo "======================"
echo "= Linting YAML files =" echo "= Linting YAML files ="
@ -33,6 +32,7 @@ shopt -s globstar
yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.} yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.}
# | tee -a "$LOGFILE" # | tee -a "$LOGFILE"
exitcode=$?
shopt -u globstar shopt -u globstar
echo "::set-output name=logfile::$(realpath ${LOGFILE})"