-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSemanticReleaseSupport.ps1
More file actions
27 lines (25 loc) · 934 Bytes
/
Copy pathSemanticReleaseSupport.ps1
File metadata and controls
27 lines (25 loc) · 934 Bytes
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
Set-StrictMode -Version Latest
$script:supportRoot = Join-Path (Split-Path -Parent $MyInvocation.MyCommand.Path) 'support'
$script:supportFileList = @(
'Get-ReleaseDateString.ps1'
'Get-ReleaseRepositoryUrl.ps1'
'Get-PSResourceRepositoryStoreDirectory.ps1'
'Initialize-PSGalleryRepository.ps1'
'ConvertTo-ReleaseTagName.ps1'
'Read-JsonFile.ps1'
'Write-JsonFile.ps1'
'Write-ProjectJsonVersion.ps1'
'Get-UnreleasedSectionMatch.ps1'
'Get-ClearedUnreleasedBody.ps1'
'Get-ChangelogReleaseVersionList.ps1'
'Get-AvailableReleaseVersionList.ps1'
'Get-OrderedReleaseVersionList.ps1'
'Get-PreviousReleaseVersion.ps1'
'Get-ChangelogWithoutReferenceFooter.ps1'
'Get-ChangelogReferenceFooter.ps1'
'Format-ReleaseChangelogText.ps1'
'Write-ChangelogFileForRelease.ps1'
)
foreach ($supportFile in $script:supportFileList) {
. (Join-Path $script:supportRoot $supportFile)
}