summaryrefslogtreecommitdiff
path: root/ci/before_deploy.ps1
diff options
context:
space:
mode:
authorZac Berkowitz <zac.berkowitz@gmail.com>2017-02-25 02:21:41 +0000
committerBryant Mairs <bryant@mai.rs>2017-04-09 07:41:58 -0700
commitee2bff1cc42f5cd8371c10d8d9228fe1c0261023 (patch)
tree4369a054854a6cf74f9e05461cf0967d1b3e9c0d /ci/before_deploy.ps1
parent52963abcdddae0ee2684c33a1f451b8a3cf0406b (diff)
downloadnix-ee2bff1cc42f5cd8371c10d8d9228fe1c0261023.zip
Added ci templates from `trust` v0.1.1
Diffstat (limited to 'ci/before_deploy.ps1')
-rw-r--r--ci/before_deploy.ps123
1 files changed, 23 insertions, 0 deletions
diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1
new file mode 100644
index 00000000..191a30b8
--- /dev/null
+++ b/ci/before_deploy.ps1
@@ -0,0 +1,23 @@
+# 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"
+
+# TODO Update this to package the right artifacts
+Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\hello.exe" '.\'
+
+7z a "$ZIP" *
+
+Push-AppveyorArtifact "$ZIP"
+
+Remove-Item *.* -Force
+Set-Location ..
+Remove-Item $STAGE
+Set-Location $SRC_DIR