AppVeyor/AppVeyorDeploy.ps1
#---------------------------------# # Header # #---------------------------------# Write-Host 'Running AppVeyor deploy script' -ForegroundColor Yellow #---------------------------------# # Update module manifest # #---------------------------------# Write-Host 'Creating new module manifest' $ModuleManifestPath = Join-Path -path "$pwd" -ChildPath ("$env:ModuleName"+'.psd1') $ModuleManifest = Get-Content $ModuleManifestPath -Raw [regex]::replace($ModuleManifest,'(ModuleVersion = )(.*)',"`$1'$env:APPVEYOR_BUILD_VERSION'") | Out-File -LiteralPath $ModuleManifestPath #---------------------------------# # Publish to PS Gallery # #---------------------------------# if ($env:APPVEYOR_REPO_BRANCH -notmatch 'master') { Write-Host "Finished testing of branch: $env:APPVEYOR_REPO_BRANCH - Exiting" exit; } $ModulePath = Split-Path $pwd Write-Host "Adding $ModulePath to 'psmodulepath' PATH variable" $env:psmodulepath = $env:psmodulepath + ';' + $ModulePath Write-Host 'Publishing module to Powershell Gallery' Publish-Module -Name $env:ModuleName -NuGetApiKey $env:NuGetApiKey |