Skip to content

Commit

Permalink
feat: support macos-14 runner (browser-actions#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Feb 14, 2024
1 parent f2d38a6 commit c7a9638
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/snapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c7a9638

Please sign in to comment.