From 315101974e3529fd6ea8282d7b73524ce64b7ece Mon Sep 17 00:00:00 2001 From: Bibazavr Date: Sat, 27 Apr 2024 08:55:04 +0300 Subject: [PATCH] build: add quiet --- .github/actions/ios/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/ios/action.yml b/.github/actions/ios/action.yml index ecff2c4e..c9f5d056 100644 --- a/.github/actions/ios/action.yml +++ b/.github/actions/ios/action.yml @@ -34,7 +34,7 @@ runs: APP_STORE_API_KEY: ${{ inputs.APP_STORE_API_KEY }} run: | cd ./${CUSTOM_DIR}/ios - xcodebuild -workspace ${IOS_SCHEME}.xcworkspace -scheme $IOS_SCHEME -sdk iphoneos archive -archivePath ${PWD}/build/${IOS_SCHEME}.xcarchive -authenticationKeyPath ~/private_keys/AuthKey_${APP_STORE_API_KEY}.p8 -authenticationKeyIssuerID $APP_STORE_API_ISSUER -authenticationKeyID $APP_STORE_API_KEY -allowProvisioningUpdates + xcodebuild -workspace ${IOS_SCHEME}.xcworkspace -scheme $IOS_SCHEME -sdk iphoneos archive -archivePath ${PWD}/build/${IOS_SCHEME}.xcarchive -authenticationKeyPath ~/private_keys/AuthKey_${APP_STORE_API_KEY}.p8 -authenticationKeyIssuerID $APP_STORE_API_ISSUER -authenticationKeyID $APP_STORE_API_KEY -allowProvisioningUpdates -quiet - name: exportArchive shell: bash env: @@ -43,7 +43,7 @@ runs: APP_STORE_API_KEY: ${{ inputs.APP_STORE_API_KEY }} run: | cd ./${CUSTOM_DIR}/ios - xcodebuild -exportArchive -archivePath ${PWD}/build/${IOS_SCHEME}.xcarchive -exportOptionsPlist ${PWD}/ExportOptions.plist -exportPath $PWD/build -authenticationKeyPath ~/private_keys/AuthKey_${APP_STORE_API_KEY}.p8 -authenticationKeyIssuerID $APP_STORE_API_ISSUER -authenticationKeyID $APP_STORE_API_KEY -allowProvisioningUpdates + xcodebuild -exportArchive -archivePath ${PWD}/build/${IOS_SCHEME}.xcarchive -exportOptionsPlist ${PWD}/ExportOptions.plist -exportPath $PWD/build -authenticationKeyPath ~/private_keys/AuthKey_${APP_STORE_API_KEY}.p8 -authenticationKeyIssuerID $APP_STORE_API_ISSUER -authenticationKeyID $APP_STORE_API_KEY -allowProvisioningUpdates -quiet - name: publish shell: bash env: