We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8b499 commit ed8fb81Copy full SHA for ed8fb81
.github/workflows/ci.yml
@@ -24,14 +24,14 @@ jobs:
24
If($Env:GITHUB_REF -match "v([0-9]*)\.([0-9]*)\.([0-9]*)") {
25
$IsRelease = "yes";
26
$Version = $Matches[0];
27
- $VersionMinor = $Matches[1];
28
- $VersionMajor = $Matches[2];
+ $VersionMajor = $Matches[1];
+ $VersionMinor = $Matches[2];
29
$VersionPatch = $Matches[3];
30
} Else {
31
$IsRelease = "no";
32
$Version = $Env:GITHUB_SHA;
33
- $VersionMinor = 0;
34
$VersionMajor = 0;
+ $VersionMinor = 0;
35
$VersionPatch = 0;
36
}
37
Echo ("::set-output name=is_release::" + $IsRelease);
0 commit comments