Public/GitHub/New-GitHubRelease.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
function New-GitHubRelease { [CmdletBinding()] param ( # The name of the release [Parameter( Mandatory = $true, Position = 0 )] [string] $Name, # The tag to use for the release, should not contain any whitespace. [Parameter( Mandatory = $true, Position = 1 )] [string] $Tag, # The description for this release [Parameter( Mandatory = $true, Position = 2 )] [string] $Description, # The GitHub repo to create the release against [Parameter( Mandatory = $true, Position = 3 )] [string] $RepoName, # The Organization that the repo lives in [Parameter( Mandatory = $true, Position = 4 )] [Alias('GitHubOrganisation','GitHubOrganization')] [string] $GitHubOrg, # The PAT to access the repo [Parameter( Mandatory = $true )] [string] $GitHubToken, # Set if this is a prerelease [Parameter( Mandatory = $false )] [switch] $Prerelease, # The target commitish to use (if any) [Parameter( Mandatory = $false )] [string] $TargetCommit ) if ($Tag -match '\s') { throw "Tag $Tag contains whitespace" } $Header = @{ Authorization = "token $GitHubToken" Accept = 'application/vnd.github.v3+json' } $URI = "https://api.github.com/repos/$GitHubOrg/$RepoName/releases" $Body = @{ tag_name = $Tag name = $Name body = $Description } if ($Prerelease) { $Body.Add('prerelease',$true) } if ($TargetCommit) { $Body.Add('target_commitish',$TargetCommit) } try { $BodyJSON = $Body | ConvertTo-Json } catch { Write-Error "Failed to convert PR body to JSON.`n$_.Exception.Message" } Write-Verbose "Attempting to create release $Tag at $URI" try { $Request = Invoke-RestMethod -Headers $Header -Uri $URI -Body $BodyJSON -Method Post } catch { Write-Error $_.Exception.Message } Return $Request } |