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

travis: add image download link (fixes #698) #737

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ deploy:
on:
all_branches: true
tags: true
repo: treehouses/builder
- provider: s3
access_key_id: AKIAISP267FQ2JXEHXYA
secret_access_key:
Expand All @@ -51,6 +52,7 @@ deploy:
on:
condition: "$experiment = latest"
tags: true
repo: treehouses/builder
- provider: s3
access_key_id: AKIAISP267FQ2JXEHXYA
secret_access_key:
Expand All @@ -62,13 +64,25 @@ deploy:
on:
condition: "$experiment = branch"
tags: true
repo: treehouses/builder
- provider: releases
api_key:
secure: HaAdh/G7wH2fFy17R7GEXSo43ayhmm+1ii1kZDnFOePkxHBVzgvBnrAjmK5n9Xg7kW+xdnWnHRZ/vb/wzDeTu0IR8XtVx4B6hyXKCi86EFavoKYcEQ1Ykf6jnkUKLeq6oDf35ZyM9HaZYjoqLKbAJln5jRALWztVd7QR3uRg8MAj9k8xJ8qHq/Qwwn/VSDIo9g21K7axk6XWnzKHnmGoL3xX2UEJH1sLdMph+NcOZXiO3DxH7TL57ZDv6qSf/OxYgjfpV6ZXCnJS+jcmoZ/QyeVeJbildJr7UOXlMe+zuCHi3dJZYSn0lOBeacPLQmPEu+S16KHP0TDOnWuwqUpLx1Y40/9HNTy8vqV9HtLZVdnp/dOvCtH4BzME5GnGjbhBzA8XLNHzP+uI889ge0GHMljINq9RZ+ojXy9HQXhT/F15aVBAZUsnpBnFsEb8orW2PruC0MRnUjBSDMxlAMCtJzXDiigbtWfO5TJI/NotOC6k6DXs5GhZx3dmPQiccYM1itYi2wKX5G4lFyIsBxMz73X3AV9siD3GnqM3eVU1kbo6z+RcvWQIWz5ScvbwpbPBmPlFRfpWfkMznck7p4GNGblfn4gnHxZe0tmEaCUusqYKLtcfg9hYU8rGtPWHxTxCitD/Zxqd8TU3yfnnLY53WLdStx5DNloCqKOPI6/ygUk=
file: "LICENSE"
body: "http://download.treehouses.io/$image_path"
skip-cleanup: true
on:
all_branches: true
tags: true
repo: treehouses/builder
- provider: script
skip_cleanup: true
script: ./.travis/upload.sh
on:
all_branches: true
tags: true

repo: treehouses/builder

after_deploy:
- "echo Download url: http://download.treehouses.io/$image_path"

Expand Down