fix commit step
All checks were successful
Actions / Build and Push Documentation (push) Successful in 14s

This commit is contained in:
cswimr 2025-02-09 11:00:07 -06:00
parent 3624bf98d1
commit a889d6edeb
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -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