소스 검색

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

Riccardo Balbo 5 년 전
부모
커밋
7c01019f0c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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