From acdd9c91d997d3c774c427cd9da57271931d0a8a Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 12 May 2017 23:59:59 -0400 Subject: [PATCH] Include grammar, readme, and license in releases --- Cargo.lock | 2 +- Cargo.toml | 2 +- ci/before_deploy.ps1 | 3 +++ ci/before_deploy.sh | 3 +++ 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 73a3d71..5c726b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "just" -version = "0.2.29" +version = "0.2.30" dependencies = [ "ansi_term 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index cf7ecad..216b3fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.2.29" +version = "0.2.30" description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] license = "WTFPL OR MIT OR Apache-2.0" diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 index 0f1a7c6..3e49ca8 100644 --- a/ci/before_deploy.ps1 +++ b/ci/before_deploy.ps1 @@ -12,6 +12,9 @@ $ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET # DONE Update this to package the right artifacts Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\just.exe" '.\' +Copy-Item "$SRC_DIR\GRAMMAR.md" '.\' +Copy-Item "$SRC_DIR\LICENSE.md" '.\' +Copy-Item "$SRC_DIR\README.md" '.\' 7z a "$ZIP" * diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 901e348..0aa0692 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -22,6 +22,9 @@ main() { # DONE Update this to package the right artifacts cp target/$TARGET/release/just $stage/ + cp GRAMMAR.md $stage/ + cp LICENSE.md $stage/ + cp README.md $stage/ cd $stage tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *