We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60234d6 + 99f9ea9 commit 0d8bb7dCopy full SHA for 0d8bb7d
.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
.gitignore
@@ -15,4 +15,7 @@ samples/*/*.js
15
16
# Ignore Firebase cache
17
.firebase
18
-firebase-debug.log
+firebase-debug.log
19
+
20
+# Ignore all gha-creds-*.json files
21
+gha-creds-*.json
0 commit comments