We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b7ff27 commit 9243cafCopy full SHA for 9243caf
1 file changed
.github/workflows/release.yml
@@ -117,6 +117,10 @@ jobs:
117
- name: Update docs in github pages
118
run: |
119
cd gh-pages
120
+ if git diff --quiet -- index.html; then
121
+ echo "No changes in index.html. Skipping git add, commit, and push."
122
+ exit 0
123
+ fi
124
git config user.name github-actions
125
git config user.email github-actions@github.com
126
git add "index.html"
0 commit comments