From b7f27cfa179edd052ae1937c22bc903ebd9293c1 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Sun, 26 Aug 2018 21:53:28 -0500 Subject: [PATCH] build and deploy examples --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 02357a9..5f9ff1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,19 +9,20 @@ os: linux matrix: fast_finish: true -cache: - - ~/.cargo +cache: cargo script: - cargo test --all before_deploy: - cargo build --release --all + - cargo build --release --examples deploy: - provider: releases api_key: $AUTH_TOKEN file: - target/release/dip + - target/release/examples/github on: condition: $TRAVIS_RUST_VERSION = stable tags: true