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