Skip to content

Commit c7a9638

Browse files
authored
feat: support macos-14 runner (browser-actions#483)
1 parent f2d38a6 commit c7a9638

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/snapshot.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ const makeBasename = ({ os }: Platform): string => {
103103
const makePlatformPart = ({ os, arch }: Platform): string => {
104104
if (os === OS.DARWIN && arch === Arch.AMD64) {
105105
return "Mac";
106+
} else if (os === OS.DARWIN && arch === Arch.ARM64) {
107+
return "Mac_Arm";
106108
} else if (os === OS.LINUX && arch === Arch.I686) {
107109
return "Linux";
108110
} else if (os === OS.LINUX && arch === Arch.AMD64) {

0 commit comments

Comments
 (0)