From 339152f76f673f6d2807d1bc337e5d5cbff48257 Mon Sep 17 00:00:00 2001 From: Alexei Samokvalov Date: Mon, 30 Sep 2019 20:41:42 +0200 Subject: [PATCH] Add zip on windows for artifact package --- .travis.yml | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c0ea5cd..f325084 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ script: before_deploy: - mkdir -p target/deploy + - if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install zip ; fi - cd target/release; zip ../deploy/awscredx-${TRAVIS_OS_NAME}.zip awscredx; cd ../.. - ls -la target/deploy deploy: diff --git a/Cargo.lock b/Cargo.lock index ca29702..51d76e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -58,7 +58,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "awscredx" -version = "0.2.7" +version = "0.2.8" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 71f4771..1fc1aa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "awscredx" -version = "0.2.7" +version = "0.2.8" authors = ["Alexei Samokvalov "] edition = "2018"