File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ jobs:
114114
115115 job_carthage_build :
116116 name : Build Carthage Dependencies
117- runs-on : macos-15
117+ runs-on : macos-latest
118118 timeout-minutes : 30
119119 steps :
120120 - name : Check out current commit (${{ github.sha }})
@@ -124,7 +124,7 @@ jobs:
124124 id : cache_built_carthage
125125 with :
126126 path : ${{ env.CACHED_CARTHAGE_PATHS }}
127- key : ${{ hashFiles('src/ios/Cartfile') }}
127+ key : ${{ hashFiles('src/ios/Cartfile', 'Makefile' ) }}
128128 - name : Install Carthage
129129 if : steps.cache_built_carthage.outputs.cache-hit != 'true'
130130 run : brew install carthage
@@ -159,7 +159,7 @@ jobs:
159159 uses : actions/cache@v4
160160 with :
161161 path : ${{ env.CACHED_CARTHAGE_PATHS }}
162- key : ${{ hashFiles('src/ios/Cartfile') }}
162+ key : ${{ hashFiles('src/ios/Cartfile', 'Makefile' ) }}
163163 - name : Check that Carthage build exists
164164 run : test -d src/ios/Carthage || exit 1
165165 - name : Pack
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Unreleased
4+
5+ ### Fixes
6+
7+ - iOS app release due to inclusion of arm64e references ([ #402 ] ( https://github.com/getsentry/sentry-cordova/pull/402 ) )
8+
39## 1.7.2
410
511### Fixes
Original file line number Diff line number Diff line change 11build :
2- cd src/ios; carthage update --use-xcframeworks --platform ios; carthage build --use-xcframeworks --no-use-binaries --platform ios; rm -r Carthage/Build/SentrySwiftUI.xcframework
2+ cd src/ios && \
3+ carthage update --use-xcframeworks --platform ios && \
4+ EXCLUDED_ARCHS =arm64e carthage build --use-xcframeworks --no-use-binaries --platform ios && \
5+ rm -r Carthage/Build/SentrySwiftUI.xcframework
You can’t perform that action at this time.
0 commit comments