|
|
@@ -104,10 +104,12 @@ publish_android:
|
|
|
publish_android_appcenter:
|
|
|
cd ../sing-box-for-android && ./gradlew :app:appCenterAssembleAndUploadPlayRelease
|
|
|
|
|
|
+
|
|
|
+# TODO: find why and remove `-destination 'generic/platform=iOS'`
|
|
|
build_ios:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
rm -rf build/SFI.xcarchive && \
|
|
|
- xcodebuild archive -scheme SFI -configuration Release -archivePath build/SFI.xcarchive
|
|
|
+ xcodebuild archive -scheme SFI -configuration Release -destination 'generic/platform=iOS' -archivePath build/SFI.xcarchive -allowProvisioningUpdates
|
|
|
|
|
|
upload_ios_app_store:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
@@ -118,55 +120,55 @@ release_ios: build_ios upload_ios_app_store
|
|
|
build_macos:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
rm -rf build/SFM.xcarchive && \
|
|
|
- xcodebuild archive -scheme SFM -configuration Release -archivePath build/SFM.xcarchive
|
|
|
+ xcodebuild archive -scheme SFM -configuration Release -archivePath build/SFM.xcarchive -allowProvisioningUpdates
|
|
|
|
|
|
upload_macos_app_store:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
- xcodebuild -exportArchive -archivePath build/SFM.xcarchive -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
|
|
+ xcodebuild -exportArchive -archivePath build/SFM.xcarchive -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
|
|
|
|
|
release_macos: build_macos upload_macos_app_store
|
|
|
|
|
|
-build_macos_independent:
|
|
|
+build_macos_standalone:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
rm -rf build/SFT.System.xcarchive && \
|
|
|
- xcodebuild archive -scheme SFM.System -configuration Release -archivePath build/SFM.System.xcarchive
|
|
|
+ xcodebuild archive -scheme SFM.System -configuration Release -archivePath build/SFM.System.xcarchive -allowProvisioningUpdates
|
|
|
|
|
|
-notarize_macos_independent:
|
|
|
+notarize_macos_standalone:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
- xcodebuild -exportArchive -archivePath "build/SFM.System.xcarchive" -exportOptionsPlist SFM.System/Upload.plist -allowProvisioningUpdates
|
|
|
+ xcodebuild -exportArchive -archivePath "build/SFM.System.xcarchive" -exportOptionsPlist SFM.System/Upload.plist -allowProvisioningUpdates
|
|
|
|
|
|
-wait_notarize_macos_independent:
|
|
|
+wait_notarize_macos_standalone:
|
|
|
sleep 60
|
|
|
|
|
|
-export_macos_independent:
|
|
|
+export_macos_standalone:
|
|
|
rm -rf dist/SFM
|
|
|
mkdir -p dist/SFM
|
|
|
cd ../sing-box-for-apple && \
|
|
|
xcodebuild -exportNotarizedApp -archivePath build/SFM.System.xcarchive -exportPath "../sing-box/dist/SFM"
|
|
|
|
|
|
-upload_macos_independent:
|
|
|
+upload_macos_standalone:
|
|
|
cd dist/SFM && \
|
|
|
rm -f *.zip && \
|
|
|
zip -ry "SFM-${VERSION}-universal.zip" SFM.app && \
|
|
|
ghr --replace --draft --prerelease "v${VERSION}" *.zip
|
|
|
|
|
|
-release_macos_independent: build_macos_independent notarize_macos_independent wait_notarize_macos_independent export_macos_independent upload_macos_independent
|
|
|
+release_macos_standalone: build_macos_standalone notarize_macos_standalone wait_notarize_macos_standalone export_macos_standalone upload_macos_standalone
|
|
|
|
|
|
build_tvos:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
rm -rf build/SFT.xcarchive && \
|
|
|
- xcodebuild archive -scheme SFT -configuration Release -archivePath build/SFT.xcarchive
|
|
|
+ xcodebuild archive -scheme SFT -configuration Release -archivePath build/SFT.xcarchive -allowProvisioningUpdates
|
|
|
|
|
|
upload_tvos_app_store:
|
|
|
cd ../sing-box-for-apple && \
|
|
|
- xcodebuild -exportArchive -archivePath "build/SFT.xcarchive" -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
|
|
+ xcodebuild -exportArchive -archivePath "build/SFT.xcarchive" -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
|
|
|
|
|
release_tvos: build_tvos upload_tvos_app_store
|
|
|
|
|
|
update_apple_version:
|
|
|
go run ./cmd/internal/update_apple_version
|
|
|
|
|
|
-release_apple: lib_ios update_apple_version release_ios release_macos release_tvos release_macos_independent
|
|
|
+release_apple: lib_ios update_apple_version release_ios release_macos release_tvos release_macos_standalone
|
|
|
|
|
|
release_apple_beta: update_apple_version release_ios release_macos release_tvos
|
|
|
|