tests/build/setup/deploy.ps1
git config --global credential.helper store Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:GitHubKey):x-oauth-basic@github.com`n" git config --global user.email "dcuomo@outlook.com" git config --global user.name "Dan Cuomo" git config --global core.autocrlf false git config --global core.safecrlf false # Line break for readability in AppVeyor console Write-Host -Object '' # Make sure we're using the Master branch and that it's not a pull request # Environmental Variables Guide: https://www.appveyor.com/docs/environment-variables/ If ($env:APPVEYOR_REPO_BRANCH -ne 'master') { Write-Warning -Message "Skipping version increment and publish for branch $env:APPVEYOR_REPO_BRANCH" } elseif ($env:APPVEYOR_PULL_REQUEST_NUMBER -gt 0) { Write-Warning -Message "Skipping version increment and publish for pull request #$env:APPVEYOR_PULL_REQUEST_NUMBER" } else { # We're going to add 1 to the revision value since a new commit has been merged to Master # This means that the major / minor / build values will be consistent across GitHub and the Gallery Try { # This is where the module manifest lives $manifestPath = ".\$($env:RepoName).psd1" # Start by importing the manifest to determine the version, then add 1 to the revision $manifest = Test-ModuleManifest -Path $manifestPath -ErrorAction SilentlyContinue [System.Version]$version = $manifest.Version Write-Output "Old Version: $version" [String]$newVersion = $Env:BuildVersion Write-Output "New Version: $newVersion" # Update the manifest with the new version value and fix the weird string replace bug #$functionList = ((Get-ChildItem -Path .\$($env:RepoName)).BaseName) $splat = @{ 'Path' = $manifestPath 'ModuleVersion' = $newVersion #'FunctionsToExport' = $functionList 'Copyright' = "(c) $( (Get-Date).Year ) Inc. All rights reserved." } Update-ModuleManifest @splat -ErrorAction SilentlyContinue (Get-Content -Path $manifestPath) -replace "PSGet_$($env:RepoName)", "$($env:RepoName)" | Set-Content -Path $manifestPath (Get-Content -Path $manifestPath) -replace 'NewManifest', "$($env:RepoName)" | Set-Content -Path $manifestPath #(Get-Content -Path $manifestPath) -replace 'FunctionsToExport = ', 'FunctionsToExport = @(' | Set-Content -Path $manifestPath -Force #(Get-Content -Path $manifestPath) -replace "$($functionList[-1])'", "$($functionList[-1])')" | Set-Content -Path $manifestPath -Force } catch { throw $_ } # Publish the new version to the PowerShell Gallery Try { # Build a splat containing the required details and make sure to Stop for errors which will trigger the catch $PM = @{ Path = '.' NuGetApiKey = $env:NuGetApiKey ErrorAction = 'Stop' Force = $true } Publish-Module @PM Write-Host "$($env:RepoName) PowerShell Module version $newVersion published to the PowerShell Gallery." -ForegroundColor Cyan } Catch { Write-Warning "Publishing update $newVersion to the PowerShell Gallery failed." throw $_ } # Publish the new version back to Master on GitHub Try { # Set up a path to the git.exe cmd, import posh-git to give us control over git, and then push changes to GitHub # Note that "update version" is included in the appveyor.yml file's "skip a build" regex to avoid a loop $env:Path += ";$env:ProgramFiles\Git\cmd" Import-Module posh-git -ErrorAction Stop git checkout master -q git add --all git status git commit -s -m "Update version to $newVersion" git push origin master -q Write-Host "$($env:RepoName) PowerShell Module version $newVersion published to GitHub." -ForegroundColor Cyan } Catch { Write-Warning "Publishing update $newVersion to GitHub failed." throw $_ } } |