feat(release): drop darwin_amd64 (Intel Macs) (#15)

Intel Macs are no longer receiving macOS updates. Drop from release
matrix and re-add to goreleaser ignore list. install.sh now prints
a clear message pointing Intel users to build-from-source. README
manual-install section no longer advertises a darwin_amd64 URL.
This commit is contained in:
2026-04-19 23:48:25 +01:00
committed by GitHub
parent 1ef24994ca
commit ad696a51d8
4 changed files with 12 additions and 6 deletions
+9
View File
@@ -59,6 +59,15 @@ detect_platform() {
;;
esac
# Intel Macs are no longer receiving macOS updates; we only ship Apple
# Silicon builds. Users on older hardware can build from source.
if [ "$os" = "darwin" ] && [ "$arch" = "amd64" ]; then
print_error "macOS Intel (x86_64) is no longer supported."
print_error "Apple Silicon binaries are available; for Intel, build from source:"
print_error " https://github.com/lukaszraczylo/filepuff-mcp#build-from-source"
exit 1
fi
echo "${os}_${arch}"
}