
This is a monumental release in the development of sterling, culminating in the finalization of the command-line API and a stabilization of sterling's features. Woo-hoo!! Sterling's functionality is very basic: conversion of PHB currencies into user-defined ones, basic arithmetic operations, and converting custom currency amounts to the equivalent amount in PHB copper. It's unlikely that I will be adding any additional features ontop of this set, as it already provides functionality appropriate enough for most usecases. Congrats to me on finally finishing a side-project!
22 lines
529 B
PowerShell
22 lines
529 B
PowerShell
# 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\$($Env:TARGET)\release\sterling.exe" '.\'
|
|
|
|
7z a "$ZIP" *
|
|
|
|
Push-AppveyorArtifact "$ZIP"
|
|
|
|
Remove-Item *.* -Force
|
|
Set-Location ..
|
|
Remove-Item $STAGE
|
|
Set-Location $SRC_DIR
|