forked from x97mdr/pickles
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A second attempt at a first start at automating the deployment
- Loading branch information
Dirk Rombauts
committed
Sep 26, 2013
1 parent
e890716
commit dd2ce54
Showing
2 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
git pull origin master | ||
|
||
start-process ".\tools\nant-0.85\binaries\nant.exe" "-buildfile:project.build pack" -Wait | ||
|
||
$version = "0.11.0" | ||
|
||
$out = .\src\Pickles\.nuget\nuget.exe pack .\src\Pickles\Pickles.MSBuild\Pickles.MSBuild.nuspec -Version $version | ||
Write-Host $out | ||
Move-Item .\Pickles.MSBuild.$version.nupkg deploy -Force | ||
|
||
$out = .\src\Pickles\.nuget\nuget.exe pack .\src\Pickles\Pickles.CommandLine\Pickles.CommandLine.nuspec -Version $version | ||
Write-Host $out | ||
Move-Item .\Pickles.CommandLine.$version.nupkg deploy -Force |