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.
2 parents 7ec87cb + c17be38 commit 78da98dCopy full SHA for 78da98d
generate/templates/.github/workflows/ci-master-pr.yml.ps1
@@ -36,7 +36,7 @@ jobs:
36
'@
37
38
# Group variants by the package version
39
-$groups = $VARIANTS | Group-Object -Property { $_['_metadata']['package_version'] } | Sort-Object -Property Name -Descending
+$groups = $VARIANTS | Group-Object -Property { $_['_metadata']['package_version'] } | Sort-Object -Property { [version]$_.Name } -Descending
40
$WORKFLOW_JOB_NAMES = $groups | % { "build-$( $_.Name.Replace('.', '-') )" }
41
foreach ($g in $groups) {
42
@"
0 commit comments