summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authoranykao <600913@gmail.com>2018-08-30 00:40:31 +0900
committerDavid Peter <sharkdp@users.noreply.github.com>2018-08-31 23:57:27 +0200
commit3a8948618940aa47f8b28d99c5a660fec68df1ca (patch)
treeca85270e9d3330cebf332baabc227ddc71fa6fe4 /ci
parent720a2fb7a5d199321e34391c47f08ac3d7fe1af6 (diff)
Create before_deploy.ps1
Diffstat (limited to 'ci')
-rw-r--r--ci/before_deploy.ps126
1 files changed, 26 insertions, 0 deletions
diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1
new file mode 100644
index 00000000..32966198
--- /dev/null
+++ b/ci/before_deploy.ps1
@@ -0,0 +1,26 @@
+# This script takes care of packaging the build artifacts that will go in the
+# release zipfile
+
+$SRC_DIR = $PWD.Path
+$STAGE = [System.Guid]::NewGuid().ToString()
+
+Set-Location $ENV:Temp
+New-Item -Type Directory -Name $STAGE
+Set-Location $STAGE
+
+$ZIP = "$SRC_DIR\$($Env:CRATE_NAME)-$($Env:APPVEYOR_REPO_TAG_NAME)-$($Env:TARGET).zip"
+
+Copy-Item "$SRC_DIR\target\release\bat.exe" '.\'
+
+# readme and license
+Copy-Item $SRC_DIR\README.md '.\'
+Copy-Item $SRC_DIR\LICENSE-MIT '.\'
+Copy-Item $SRC_DIR\LICENSE-APACHE '.\'
+
+7z a "$ZIP" *
+
+Push-AppveyorArtifact "$ZIP"
+
+Set-Location ..
+Remove-Item $STAGE -Force -Recurse
+Set-Location $SRC_DIR