Don't fail if there is no javadoc to commit.
This commit is contained in:
parent
f505bdeb21
commit
7c01019f0c
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@ -543,10 +543,10 @@ jobs:
|
|||||||
git config --global user.name "Github Actions"
|
git config --global user.name "Github Actions"
|
||||||
git config --global user.email "actions@users.noreply.github.com"
|
git config --global user.email "actions@users.noreply.github.com"
|
||||||
|
|
||||||
git add .
|
git add . || true
|
||||||
git commit -m "$version"
|
git commit -m "$version" || true
|
||||||
|
|
||||||
branch="gh-pages"
|
branch="gh-pages"
|
||||||
git push origin "$branch" --force
|
git push origin "$branch" --force || true
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user