Configuring Travis-CI upload to GitHub Releases

This commit is contained in:
2017-10-05 23:10:03 -07:00
parent 90bdb88c1a
commit 5935c3c187

View File

@@ -17,5 +17,14 @@ matrix:
script:
- mkdir build
- cd build
- cmake .. && make
- cmake .. && make && make package
- stage: GitHub Release
script: echo "Deploying to GitHub releases ..."
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file: build/archive/kraken.tgz
skip_cleanup: true
on:
tags: true