We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4be6390 + 8c06428 commit c47fca1Copy full SHA for c47fca1
github-release.js
@@ -92,8 +92,8 @@ const ranked = artifacts
92
const artifactName2Rank = (name) => {
93
let rank = ranked.indexOf(name
94
.replace(/-\d+(\.\d+)*(-rc\d+)?/, '')
95
- .replace(/-(32|64)-bit/, '')
96
- ) + (name.indexOf('-64-bit') > 0 ? 0.5 : 0)
+ .replace(/-((32|64)-bit|arm64)/, '')
+ ) + (name.indexOf('-64-bit') > 0 ? 0.5 : (name.indexOf('-arm64') > 0 ? 0.3 : 0))
97
return rank
98
}
99
0 commit comments