Skip to content

Commit 0d8bb7d

Browse files
authored
Merge branch 'main' into 3d-samples-test
2 parents 60234d6 + 99f9ea9 commit 0d8bb7d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
- name: Commit and Push Changes (to temp branch)
8181
run: |
8282
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
83+
if git diff-index --quiet HEAD --; then
8784
echo "No changes to commit"
85+
exit 0
8886
fi
87+
git commit -m "Update dist folder [skip ci]"
88+
git push --force origin temp-build-branch

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ samples/*/*.js
1515

1616
# Ignore Firebase cache
1717
.firebase
18-
firebase-debug.log
18+
firebase-debug.log
19+
20+
# Ignore all gha-creds-*.json files
21+
gha-creds-*.json

0 commit comments

Comments
 (0)