Skip to content

Commit

Permalink
A second attempt at a first start at automating the deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Rombauts committed Sep 26, 2013
1 parent e890716 commit dd2ce54
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 0 additions & 6 deletions NuGetPackAll.cmd

This file was deleted.

13 changes: 13 additions & 0 deletions Release.ps1
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

0 comments on commit dd2ce54

Please sign in to comment.