ReviewOS

also looking at this

pantry-pm/pantry

fix(ci): publish darwin-x86-64 (Intel macOS) — retire macos-13 + fix bun bootstrap

#205
Merged chrisbbreuer wants to merge fix/ci-macos13-retired-use-macos15-intel into main
7 files +427 -348
.github/workflows/build-registry.ymlmodified+2-2
Changes to .github/workflows/build-registry.yml
@@ -107,11 +107,11 @@ jobs:
107107 PLATFORMS="$"
108108
109109 if [ "$PLATFORMS" = "all" ]; then
110 MATRIX='{"include":[{"os":"macos-14","platform":"darwin-arm64"},{"os":"macos-13","platform":"darwin-x86-64"},{"os":"ubuntu-latest","platform":"linux-x86-64"}]}'
110 MATRIX='{"include":[{"os":"macos-14","platform":"darwin-arm64"},{"os":"macos-15-intel","platform":"darwin-x86-64"},{"os":"ubuntu-latest","platform":"linux-x86-64"}]}'
111111 elif [ "$PLATFORMS" = "darwin-arm64" ]; then
112112 MATRIX='{"include":[{"os":"macos-14","platform":"darwin-arm64"}]}'
113113 elif [ "$PLATFORMS" = "darwin-x86-64" ]; then
114 MATRIX='{"include":[{"os":"macos-13","platform":"darwin-x86-64"}]}'
114 MATRIX='{"include":[{"os":"macos-15-intel","platform":"darwin-x86-64"}]}'
115115 elif [ "$PLATFORMS" = "linux-x86-64" ]; then
116116 MATRIX='{"include":[{"os":"ubuntu-latest","platform":"linux-x86-64"}]}'
117117 fi