From 6b7d498dc80ae260041da26207ee08236999b27b Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Mon, 20 Oct 2025 21:19:04 +0800 Subject: [PATCH] fix(ci): deb uses amd64 for arch name --- apps/stage-tamagotchi/scripts/utils.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/stage-tamagotchi/scripts/utils.ts b/apps/stage-tamagotchi/scripts/utils.ts index ada231cf6..8cf379c24 100644 --- a/apps/stage-tamagotchi/scripts/utils.ts +++ b/apps/stage-tamagotchi/scripts/utils.ts @@ -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':