Skip to content

Commit

Permalink
Upd readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ibiqlik committed Aug 19, 2021
1 parent 30f9249 commit 24e1b37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- id: lint-all-continue
name: lint all (continue on error)
continue-on-error: true
# continue-on-error: true
uses: ./
with:
file_or_dir: test
Expand All @@ -43,7 +43,11 @@ jobs:
uses: ./

- id: print-output
if: always()
name: Print output
run: |
echo ${{ steps.lint-with-config.outputs.logfile }}
cat ${{ steps.lint-with-config.outputs.logfile }}
echo ${{ steps.lint-all-continue.outputs.logfile }}
cat ${{ steps.lint-all-continue.outputs.logfile }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ jobs:
- run: echo ${{ steps.yaml-lint.outputs.logfile }}
- uses: actions/upload-artifact@v2
if: always()
with:
name: yamllint-logfile
path: ${{ steps.yaml-lint.outputs.logfile }}
Expand Down
1 change: 1 addition & 0 deletions entrypoint.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash -l
set -o pipefail

echo "======================"
echo "= Linting YAML files ="
Expand Down

0 comments on commit 24e1b37

Please sign in to comment.