Skip to content

Commit

Permalink
ignore failure of closeRepository
Browse files Browse the repository at this point in the history
  • Loading branch information
PRosenb committed May 23, 2020
1 parent 5de5e61 commit 42c8759
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ jobs:
# - Copy content of ./secring.gpg.base64 to env var
echo $PGP_SECRING_BASE64 | base64 --decode > secring.gpg
./gradlew publish
./gradlew closeRepository
# do not fail build if closeRepository fails. It fails randomly but usually still works.
./gradlew closeRepository || true
- persist_to_workspace:
root: library/build/outputs/
paths:
Expand Down

0 comments on commit 42c8759

Please sign in to comment.