We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 523b5da commit f041bd8Copy full SHA for f041bd8
.travis.yml
@@ -4,3 +4,15 @@ services:
4
- docker
5
6
script: mvn clean test verify
7
+
8
+# Deployment configuration
9
+deploy:
10
+ provider: releases
11
+ api_key:
12
+ secure: "$GITHUB_TOKEN" # You need to encrypt your API key
13
+ file_glob: true
14
+ file: target/*.jar # Specifies the JAR files to deploy
15
+ skip_cleanup: true
16
+ on:
17
+ tags: true # Only deploy on tagged commits
18
+ name: "Release: $TRAVIS_TAG"
0 commit comments