Skip to content

Commit

Permalink
ci: remove temp files
Browse files Browse the repository at this point in the history
  • Loading branch information
Archimedes Trajano committed Nov 19, 2024
1 parent 3b80645 commit 672e422
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eas-local-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
set -ex
npm i -g eas-cli
npm i
rm -rf $HOME/Library/Developer/Xcode/DerivedData/MyApp-* $HOME/Library/Developer/Xcode/DerivedData/MyAppGo-*
rm -rf \
$HOME/Library/Developer/Xcode/DerivedData/MyApp-* \
$HOME/Library/Developer/Xcode/DerivedData/MyAppGo-* \
$HOME/Library/Developer/Xcode/Archives/*/MyApp' '* \
$HOME/Library/Developer/Xcode/Archives/*/MyAppGo' '*
cd packages/my-app
eas build --platform=ios --profile=development --local --non-interactive --output=../../my-app-dev-client.ipa
eas build --platform=ios --profile=preview --local --non-interactive --output=../../my-app.ipa
Expand Down

0 comments on commit 672e422

Please sign in to comment.