Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in new-github-release-function.psm1 #17846

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions deploy/new-github-release-function.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function New-GitHubRelease
@{
GitHubUsername = 'deadlydog'
GitHubRepositoryName = 'New-GitHubRelease'
GitHubAccessToken = 'SomeLongHexidecimalString'
GitHubAccessToken = 'SomeLongHexadecimalString'
ReleaseName = "New-GitHubRelease v1.0.0"
TagName = "v1.0.0"
ReleaseNotes = "This release contains the following changes: ..."
Expand Down Expand Up @@ -113,7 +113,7 @@ function New-GitHubRelease
[Parameter(Mandatory=$true,HelpMessage="The repository name to create the release in (e.g. Invoke-MsBuild).")]
[string] $GitHubRepositoryName,

[Parameter(Mandatory=$true,HelpMessage="The Acess Token to use as credentials for GitHub.")]
[Parameter(Mandatory=$true,HelpMessage="The Access Token to use as credentials for GitHub.")]
[string] $GitHubAccessToken,

[Parameter(Mandatory=$true,HelpMessage="The name of the tag to create at the the Commitish.")]
Expand Down Expand Up @@ -344,4 +344,4 @@ function Set-SecurityProtocolForThread
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12 -bor [System.Net.SecurityProtocolType]::Tls11 -bor [System.Net.SecurityProtocolType]::Tls
}

Export-ModuleMember -Function New-GitHubRelease
Export-ModuleMember -Function New-GitHubRelease