Skip to content

Instantly share code, notes, and snippets.

@swade1987
Created February 8, 2016 15:45
Show Gist options
  • Save swade1987/e905c3ade02f4613cf58 to your computer and use it in GitHub Desktop.
Save swade1987/e905c3ade02f4613cf58 to your computer and use it in GitHub Desktop.
chocolatey package
task PushChocolateyPackage {
$file = @(Get-Item $build_output_dir\*.nupkg)[0]
Write-Host "Installing NuGet"
Exec { choco install nuget.commandline }
Write-Host "Setting api key"
Exec { choco apikey -k $apiKey -s $chocolateySource }
Write-Host "Pushing new Chocolatey package to Artifactory ..."
Exec { choco push $file -s $chocolateySource -k $apiKey }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment