2017-05-07 19:48:07 -07:00
|
|
|
# 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"
|
|
|
|
|
|
|
|
# DONE Update this to package the right artifacts
|
|
|
|
Copy-Item "$SRC_DIR\target\$($Env:TARGET)\release\just.exe" '.\'
|
2017-05-12 20:59:59 -07:00
|
|
|
Copy-Item "$SRC_DIR\GRAMMAR.md" '.\'
|
2017-11-30 09:05:21 -08:00
|
|
|
Copy-Item "$SRC_DIR\LICENSE" '.\'
|
2018-02-03 20:27:07 -08:00
|
|
|
Copy-Item "$SRC_DIR\README.adoc" '.\'
|
2017-05-07 19:48:07 -07:00
|
|
|
|
|
|
|
7z a "$ZIP" *
|
|
|
|
|
|
|
|
Push-AppveyorArtifact "$ZIP"
|
|
|
|
|
|
|
|
Remove-Item *.* -Force
|
|
|
|
Set-Location ..
|
|
|
|
Remove-Item $STAGE
|
|
|
|
Set-Location $SRC_DIR
|