Missing echo

This commit is contained in:
Jan Mikeš 2020-03-12 22:01:14 +01:00
parent ed52e820bc
commit c1a5271247
No known key found for this signature in database
GPG Key ID: 1DEDF63B40DDA99D

View File

@ -28,7 +28,7 @@ jobs:
-
name: Check for modified files
id: git-check
run: ::set-output name=modified::$(if git diff --exit-code -s; then echo "false"; else echo "true"; fi)
run: echo ::set-output name=modified::$(if git diff --exit-code -s; then echo "false"; else echo "true"; fi)
- name: Push changes
if: steps.git-check.outputs.modified == 'true'