generated from Stravaig-Projects/stravaig-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Set-Version.ps1
71 lines (64 loc) · 2.47 KB
/
Set-Version.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
[CmdletBinding()]
param (
[Parameter(Mandatory=$false)]
[string]
$IsPreview = $true,
[Parameter(Mandatory=$false)]
[string]
$IsPublicRelease = "false"
)
function ConvertTo-Boolean([string]$Value, [bool]$EmptyDefault)
{
if ([string]::IsNullOrWhiteSpace($value)) { return $EmptyDefault; }
if ($Value -like "true") { return $true; }
if ($Value -like "false") { return $false; }
throw "Don't know how to convert `"$Value`" into a Boolean."
}
[bool]$IsPreview = ConvertTo-Boolean -Value $IsPreview -EmptyDefault $true;
[bool]$IsPublicRelease = ConvertTo-Boolean -Value $IsPublicRelease -EmptyDefault $false;
$VersionFile = "$PSScriptRoot/version.txt";
# Work out the version number
$nextVersion = Get-Content $VersionFile -ErrorAction Stop
if ($null -eq $nextVersion)
{
Write-Error "The $VersionFile file is empty"
Exit 1
}
if ($nextVersion.GetType().BaseType.Name -eq "Array")
{
$nextVersion = $nextVersion[0]
Write-Warning "$VersionFile contains more than one line of text. Using the first line."
}
if ($nextVersion -notmatch "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$")
{
Write-Error "The contents of $VersionFile (`"$nextVersion`") not recognised as a valid version number."
Exit 2
}
"STRAVAIG_PACKAGE_VERSION=$nextVersion" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
$fullVersion = $nextVersion;
# Work out the suffix (~ = no suffix)
$suffix = "~"
if ($IsPreview)
{
$suffix = "preview."
$suffix += $Env:GITHUB_RUN_NUMBER
$fullVersion += "-"+$suffix;
"STRAVAIG_IS_STABLE=false" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
"STRAVAIG_IS_PREVIEW=true" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
}
else
{
"STRAVAIG_IS_STABLE=true" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
"STRAVAIG_IS_PREVIEW=false" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
}
"STRAVAIG_PACKAGE_VERSION_SUFFIX=$suffix" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
"STRAVAIG_PACKAGE_FULL_VERSION=$fullVersion" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
"STRAVAIG_RELEASE_TAG=v$fullVersion" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
if ($IsPublicRelease)
{
"STRAVAIG_PUBLISH_TO_NUGET=true" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
}
else
{
"STRAVAIG_PUBLISH_TO_NUGET=false" | Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
}