feat(ci): parse if there are any changes

This commit is contained in:
Mikołaj Młodzikowski
2023-09-19 10:05:00 +02:00
parent c98e53a984
commit e1557f51ce
+5 -3
View File
@@ -329,7 +329,9 @@ jobs:
fi
# create commit
commit_msg="Automated hash update from ${{ github.ref }}"
git commit -m "$commit_msg"
git push -u origin "main"
if ! git diff --cached --exit-code; then
commit_msg="Automated hash update from ${{ github.ref }}"
git commit -m "$commit_msg"
git push -u origin "main"
fi
)