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.
1 parent 05b368d commit 06fc6a9Copy full SHA for 06fc6a9
src/install.ts
@@ -19,7 +19,15 @@ function jabbaUrlSuffix(): string {
19
const runnerOs = shell.env["RUNNER_OS"] || "undefined";
20
switch (runnerOs.toLowerCase()) {
21
case "linux":
22
- return "linux-amd64";
+ const arch = shell.exec("uname -m", { silent: true }).stdout;
23
+ switch (arch) {
24
+ case "arm64":
25
+ case "aarch64":
26
+ return "linux-arm64";
27
+
28
+ default:
29
+ return "linux-amd64";
30
+ }
31
case "macos":
32
return "darwin-amd64";
33
case "windows":
0 commit comments