Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capture artifact from a Travis release #7

Merged
merged 4 commits into from Jul 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions .travis.yml
Expand Up @@ -9,7 +9,9 @@ go:
- 1.9

env:
- DEP_VERSION="0.4.1"
global:
- DEP_VERSION="0.4.1"
- RELEASES_DRAFT=false

script:
- set -e
Expand All @@ -33,10 +35,11 @@ install:

deploy:
provider: releases
api_key:
secure: ${RELEASES_API_KEY_SECURE}
file: honeykaf
api_key: $RELEASES_API_KEY_SECURE
file: $GOPATH/bin/honeykaf
skip_cleanup: true
draft: $RELEASES_DRAFT
tag_name: $TRAVIS_TAG
on:
repo: cargurus/honeykaf
branch: master
Expand Down