21 lines
702 B
Bash
Executable file
21 lines
702 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Source the .env.prod file
|
|
set -a
|
|
source .env.prod
|
|
set +a
|
|
|
|
# Print debug information
|
|
echo "Debug information:"
|
|
echo "Using local app-store signing via exportOptions.plist (method=app-store)"
|
|
|
|
echo "Available code signing identities (security find-identity -v -p codesigning):"
|
|
xcrun security find-identity -v -p codesigning || echo "No code signing identities found or security tool error"
|
|
|
|
# Execute xcodebuild using local signing (Apple Distribution certificate + Xcode-managed profiles)
|
|
cd ios && xcodebuild -exportArchive \
|
|
-archivePath AlerteSecours.xcarchive \
|
|
-exportPath ./build \
|
|
-exportOptionsPlist exportOptions.plist \
|
|
-allowProvisioningUpdates \
|
|
-verbose
|