diff --git a/dist/save-cache/index.js b/dist/save-cache/index.js index d1c53b2..390c1ee 100644 --- a/dist/save-cache/index.js +++ b/dist/save-cache/index.js @@ -91307,6 +91307,7 @@ function getArch() { arm64: "aarch64", ia32: "i686", ppc64: "powerpc64le", + riscv64: "riscv64gc", s390x: "s390x", x64: "x86_64", }; diff --git a/dist/setup/index.js b/dist/setup/index.js index cb5e263..04a32d5 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -97230,6 +97230,7 @@ function getArch() { arm64: "aarch64", ia32: "i686", ppc64: "powerpc64le", + riscv64: "riscv64gc", s390x: "s390x", x64: "x86_64", }; diff --git a/src/utils/platforms.ts b/src/utils/platforms.ts index bf044ca..130479f 100644 --- a/src/utils/platforms.ts +++ b/src/utils/platforms.ts @@ -13,6 +13,7 @@ export type Architecture = | "x86_64" | "aarch64" | "s390x" + | "riscv64gc" | "powerpc64le"; export function getArch(): Architecture | undefined { @@ -21,6 +22,7 @@ export function getArch(): Architecture | undefined { arm64: "aarch64", ia32: "i686", ppc64: "powerpc64le", + riscv64: "riscv64gc", s390x: "s390x", x64: "x86_64", };