Skip to content

Commit 0db9b29

Browse files
committed
fix: drop macOS-X64 support from the action's platform switch
release.yml no longer publishes x86_64-apple-darwin binaries (Intel macOS releases were dropped), so keeping this case would 404 for any release cut after that change.
1 parent 94c2d41 commit 0db9b29

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ runs:
5353
case "${RUNNER_OS}-${RUNNER_ARCH}" in
5454
Linux-X64) TRIPLE=x86_64-unknown-linux-musl; EXT=tar.gz ;;
5555
Linux-ARM64) TRIPLE=aarch64-unknown-linux-musl; EXT=tar.gz ;;
56-
macOS-X64) TRIPLE=x86_64-apple-darwin; EXT=tar.gz ;;
5756
macOS-ARM64) TRIPLE=aarch64-apple-darwin; EXT=tar.gz ;;
5857
Windows-X64) TRIPLE=x86_64-pc-windows-msvc; EXT=zip ;;
5958
*) echo "::error::Unsupported platform ${RUNNER_OS}-${RUNNER_ARCH}" >&2; exit 1 ;;

0 commit comments

Comments
 (0)