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 $Json = $Content | ConvertFrom-Json $latestRelease = ($Json | Where-Object { $_.prerelease -eq $False }) | Select-Object -First 1 # Build and array of the latest release and download URLs $releases = $latestRelease.assets ForEach ($release in $releases) { $PSObject = [PSCustomObject] @{ # TODO: use RegEx to extract version number rather than -replace Version = (($latestRelease.tag_name -replace "v", "") -replace ".windows.1", "") Date = (ConvertTo-DateTime -DateTime $release.created_at) Size = $release.size URI = $release.browser_download_url } Write-Output -InputObject $PSObject } } |