summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2017-10-15 12:47:33 -0700
committerGitHub <noreply@github.com>2017-10-15 12:47:33 -0700
commit5800d733025927769f30c0334c24811185f50245 (patch)
tree978c60e739007298c5068e9763a9999108c1788e
parent0030878ad75470d6d7d447a115196ac26c2509c4 (diff)
Fix release builder (#235)v0.3.3
-rw-r--r--ci/before_deploy.ps12
-rw-r--r--ci/before_deploy.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1
index 3e49ca88..b3b8a3e1 100644
--- a/ci/before_deploy.ps1
+++ b/ci/before_deploy.ps1
@@ -14,7 +14,7 @@ $ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET
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" '.\'
+Copy-Item "$SRC_DIR\README.asc" '.\'
7z a "$ZIP" *
diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh
index 0aa06924..9e1c967d 100644
--- a/ci/before_deploy.sh
+++ b/ci/before_deploy.sh
@@ -24,7 +24,7 @@ main() {
cp target/$TARGET/release/just $stage/
cp GRAMMAR.md $stage/
cp LICENSE.md $stage/
- cp README.md $stage/
+ cp README.asc $stage/
cd $stage
tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *