Update json-master.yml

This commit is contained in:
stam 2021-01-17 03:26:24 +03:00
parent faae0466ad
commit 4181701d35

View File

@ -43,11 +43,11 @@ jobs:
cd ..
- name: "Run if changes have been detected"
if: steps.auto-commit-action.outputs.changes_detected == 'true'
if: if: ${{ steps.commit.outputs.changes_detected }} == "true"
run: echo "Changes!"
- name: "Run if no changes have been detected"
if: steps.auto-commit-action.outputs.changes_detected == 'false'
if: if: ${{ steps.commit.outputs.changes_detected }} == "false"
run: echo "No Changes!"
- name: Commit changes