Public/Get-GitforWindows.ps1
Function Get-GitForWindows { <# .SYNOPSIS Returns the available Git for Windows versions. .DESCRIPTION Returns the available Git for Windows versions. .NOTES Author: Trond Eirik Haavarstein Twitter: @xenappblog .LINK https://github.com/aaronparker/Evergreen .EXAMPLE Get-Git Description: Returns the released Git version and download URI. #> [OutputType([System.Management.Automation.PSObject])] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "")] [CmdletBinding()] Param() # Get application resource strings from its manifest $res = Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1] Write-Verbose -Message $res.Name # Query the Git repository for releases, keeping the latest release $iwcParams = @{ Uri = $res.Get.Uri ContentType = $res.Get.ContentType } $Content = Invoke-WebContent @iwcParams If ($Null -ne $Content) { $json = $Content | ConvertFrom-Json $releases = $json | Where-Object { $_.prerelease -ne $True } $latestRelease = $releases | Select-Object -First 1 # Build and array of the latest release and download URLs ForEach ($release in $latestRelease.assets) { $PSObject = [PSCustomObject] @{ # TODO: use RegEx to extract version number rather than -replace Version = (($latestRelease.tag_name -replace "v", "") -replace $res.Get.ReplaceText, "") Date = (ConvertTo-DateTime -DateTime $release.created_at) Size = $release.size URI = $release.browser_download_url } Write-Output -InputObject $PSObject } } } |