From a36a3681402088400c05d810758747a6c3b1f337 Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Fri, 26 Jun 2026 16:32:00 +0100 Subject: [PATCH] action: download the correct binary on riscv64 Updates #299 Signed-off-by: Alex Chan --- dist/index.js | 2 ++ src/main.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dist/index.js b/dist/index.js index feea710..2e549e5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -52305,6 +52305,8 @@ function getTailscaleArch(runnerOS) { return "arm"; case "X86": return "386"; + case "riscv64": + return "riscv64"; default: return "amd64"; } diff --git a/src/main.ts b/src/main.ts index dbc3d1c..a77592c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -315,6 +315,8 @@ function getTailscaleArch(runnerOS: string): string { return "arm"; case "X86": return "386"; + case "riscv64": + return "riscv64"; default: return "amd64"; }