Set up TestFlight deployment
Some checks failed
TestFlight / testflight (push) Failing after 24s

This commit is contained in:
2026-07-06 08:36:11 -07:00
parent e53cde7f60
commit db947b1827
9 changed files with 518 additions and 0 deletions

18
justfile Normal file
View File

@@ -0,0 +1,18 @@
simulator := "platform=iOS Simulator,name=iPhone 17e,OS=latest"
derived_data := "build/DerivedData"
default:
@just build
build:
if command -v xcbeautify >/dev/null 2>&1; then \
xcodebuild -project SBrowser.xcodeproj -scheme Attractor -destination '{{simulator}}' | xcbeautify; \
else \
xcodebuild -project SBrowser.xcodeproj -scheme Attractor -destination '{{simulator}}'; \
fi
beta:
bundle exec fastlane ios beta
setup-signing:
bundle exec fastlane ios setup_signing