We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9239e commit 0c7f490Copy full SHA for 0c7f490
.github/workflows/release.yml
@@ -80,9 +80,9 @@ jobs:
80
- name: Commit and Push Changes (to temp branch)
81
run: |
82
git add dist index.html
83
- if ! git diff-index --quiet HEAD --; then
84
- git commit -m "Update dist folder [skip ci]"
85
- git push --force origin temp-build-branch
86
- else
+ if git diff-index --quiet HEAD --; then
87
echo "No changes to commit"
+ exit 0
88
fi
+ git commit -m "Update dist folder [skip ci]"
+ git push --force origin temp-build-branch
0 commit comments