fix(ci): deb uses amd64 for arch name

This commit is contained in:
Neko Ayaka
2025-10-20 21:19:04 +08:00
parent de15c9d15c
commit 6b7d498dc8
+6
View File
@@ -93,12 +93,18 @@ function mapArchFor(
if (ext === 'rpm') {
return 'aarch64'
}
if (ext === 'deb') {
return 'arm64'
}
return 'arm64'
case target === 'x86_64-unknown-linux-gnu':
if (ext === 'rpm') {
return 'x86_64'
}
if (ext === 'deb') {
return 'amd64'
}
return 'x64'
case target === 'aarch64-apple-darwin':