From 461a379758021d5fc6ee1fe853c8087910532ae3 Mon Sep 17 00:00:00 2001 From: Ghost_chu <2908803755@qq.com> Date: Thu, 28 Mar 2019 20:53:11 +0800 Subject: [PATCH] fix travis-ci --- .travis.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..890558eef --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: java +jdk: + - oraclejdk8 +install: true +script: + - ./scripts/inst.sh --setup --fast +after_success: + - rm -rf push + - mkdir push + - cp ./target/*.jar ./push/ +deploy: + skip_cleanup: true + provider: releases + api_key: + secure: $Github_token + file: + - ./push/* + file_glob: true + on: + tags: true \ No newline at end of file