@@ -121,15 +121,15 @@ jobs:
121121 - uses : actions/download-artifact@v6
122122 with :
123123 pattern : xcframework-${{github.sha}}-sentry-static
124- path : Carthage /
124+ path : XCFrameworkBuildPath /
125125 - uses : actions/download-artifact@v6
126126 with :
127127 pattern : xcframework-${{github.sha}}-sentry-swiftui
128- path : Carthage /
128+ path : XCFrameworkBuildPath /
129129 - run : ./scripts/ci-select-xcode.sh 16.4
130130 - name : Unzip all XCFrameworks
131131 run : |
132- find Carthage -name "*.xcframework.zip" -print0 | xargs -t0I @ unzip @ -d Carthage
132+ find XCFrameworkBuildPath -name "*.xcframework.zip" -print0 | xargs -t0I @ unzip @ -d XCFrameworkBuildPath
133133 - run : make build-xcframework-sample
134134 - name : Run CI Diagnostics
135135 if : failure()
@@ -289,8 +289,8 @@ jobs:
289289 - uses : actions/download-artifact@v6
290290 with :
291291 pattern : xcframework-${{github.sha}}-sentry-dynamic
292- path : Carthage /
293- - run : find Carthage -name "Sentry-Dynamic.xcframework.zip" -print0 | xargs -t0I @ unzip @ -d Carthage
292+ path : XCFrameworkBuildPath /
293+ - run : find XCFrameworkBuildPath -name "Sentry-Dynamic.xcframework.zip" -print0 | xargs -t0I @ unzip @ -d XCFrameworkBuildPath
294294 - name : Build test app with sentry
295295 run : bundle exec fastlane build_perf_test_app_sentry
296296 env :
@@ -342,7 +342,7 @@ jobs:
342342 with :
343343 pattern : xcframework-${{github.sha}}-*
344344 merge-multiple : true
345- path : Carthage /
345+ path : XCFrameworkBuildPath /
346346
347347 - name : Archive XCFrameworks for Craft
348348 uses : actions/upload-artifact@v5
@@ -351,7 +351,7 @@ jobs:
351351 if-no-files-found : error
352352 overwrite : true
353353 path : |
354- ${{github.workspace}}/Carthage /*.zip
354+ ${{github.workspace}}/XCFrameworkBuildPath /*.zip
355355
356356 # update-package-sha.sh uses this env variable to update Package.swift.
357357 # During release Craft calls bump.sh that uses update-package-sha.sh.
0 commit comments