From c7a9638ceead5dc0072ed72e8dcba019186cc665 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Wed, 14 Feb 2024 06:33:50 +0200 Subject: [PATCH] feat: support `macos-14` runner (#483) --- src/snapshot.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/snapshot.ts b/src/snapshot.ts index 7241399..8e3ed79 100644 --- a/src/snapshot.ts +++ b/src/snapshot.ts @@ -103,6 +103,8 @@ const makeBasename = ({ os }: Platform): string => { const makePlatformPart = ({ os, arch }: Platform): string => { if (os === OS.DARWIN && arch === Arch.AMD64) { return "Mac"; + } else if (os === OS.DARWIN && arch === Arch.ARM64) { + return "Mac_Arm"; } else if (os === OS.LINUX && arch === Arch.I686) { return "Linux"; } else if (os === OS.LINUX && arch === Arch.AMD64) {