Skip to content

Commit 8e4918f

Browse files
shoumikhinfacebook-github-bot
authored andcommitted
Don't bundle cmake-out dir. (#2482)
Summary: Pull Request resolved: #2482 . Reviewed By: digantdesai Differential Revision: D55003672 fbshipit-source-id: 0851ab291c068824e11df6d3339d116f7427592c
1 parent f3019a6 commit 8e4918f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/apple.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,12 @@ jobs:
9292
build/build_apple_frameworks.sh --coreml --mps --portable --xnnpack
9393
9494
# Bundle iOS Frameworks
95-
for FRAMEWORK in "${FRAMEWORKS[@]}"; do
96-
zip -r "${RUNNER_TEMP}/artifacts/${FRAMEWORK}-${VERSION}.zip" "cmake-out/${FRAMEWORK}.xcframework" LICENSE
97-
done
95+
for FRAMEWORK in "${FRAMEWORKS[@]}"; do (
96+
cd cmake-out && \
97+
zip -r "${RUNNER_TEMP}/artifacts/${FRAMEWORK}-${VERSION}.zip" \
98+
"${FRAMEWORK}.xcframework" \
99+
../LICENSE
100+
) done
98101
99102
popd
100103

0 commit comments

Comments
 (0)