diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 index 3e49ca8..b3b8a3e 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 0aa0692..9e1c967 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 *