fix commit step
All checks were successful
Actions / Build and Push Documentation (push) Successful in 14s
All checks were successful
Actions / Build and Push Documentation (push) Successful in 14s
This commit is contained in:
parent
3624bf98d1
commit
a889d6edeb
1 changed files with 7 additions and 2 deletions
|
@ -35,5 +35,10 @@ jobs:
|
|||
run: bun docs
|
||||
- name: Commit and Push
|
||||
run: |
|
||||
git commit -a -m "Update documentation"
|
||||
git push origin
|
||||
git add .
|
||||
if ! git diff-index --quiet HEAD --; then
|
||||
git commit -m "Update documentation"
|
||||
git push origin
|
||||
else
|
||||
echo "No changes to commit."
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue