From 2ebc8c3a5a4540c4c1ec3ff030398da16eef2d52 Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Thu, 21 Sep 2017 18:11:34 -0400 Subject: [PATCH] Update deployed artifacts --- ci/before_deploy.ps1 | 1 + ci/before_deploy.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 index 850d967..033b8a5 100644 --- a/ci/before_deploy.ps1 +++ b/ci/before_deploy.ps1 @@ -11,6 +11,7 @@ Set-Location $STAGE $ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).zip" Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\eson.exe" '.\' +Copy-Item "$SRC_DIR\README.md","$SRC_DIR\LICENSE.md","$SRC_DIR\examples" '.\' 7z a "$ZIP" * diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 4780867..5aaef49 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -20,6 +20,7 @@ main() { cross rustc --bin eson --target $TARGET --release -- -C lto cp target/$TARGET/release/eson $stage/ + cp -r README.md LICENSE.md $src/examples/ $stage/ cd $stage tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *