Explorar o código

Don't fail if there is no javadoc to commit.

Riccardo Balbo %!s(int64=5) %!d(string=hai) anos
pai
achega
7c01019f0c
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      .github/workflows/main.yml

+ 3 - 3
.github/workflows/main.yml

@@ -543,10 +543,10 @@ jobs:
             git config --global user.name "Github Actions"
             git config --global user.email "[email protected]"
       
-            git add .
-            git commit -m "$version"
+            git add . || true
+            git commit -m "$version" || true
 
             branch="gh-pages"                   
-            git push origin "$branch" --force 
+            git push origin "$branch" --force || true
 
           fi