This commit is contained in:
Jonas Bark
2025-10-09 13:34:58 +02:00
parent 29f773d212
commit e443e5ab0d
2 changed files with 2 additions and 2 deletions

View File

@@ -198,7 +198,7 @@ jobs:
API_KEY_BASE64: ${{ secrets.APPSTORE_API_KEY_FILE_BASE64 }}
run: |
mkdir -p ./private_keys;
echo -n "$API_KEY_BASE64" | base64 --decode -o "./private_keys/AuthKey_${APPSTORE_API_KEY}.p8";
printf %s "$API_KEY_BASE64" | base64 -D > "./private_keys/AuthKey_${APPSTORE_API_KEY}.p8";
flutter build ipa --release --export-options-plist=ios/ExportOptions.plist;
xcrun altool --upload-app -f build/ios/ipa/swift_play.ipa -t ios --apiKey "$APPSTORE_API_KEY" --apiIssuer "$APPSTORE_API_ISSUER_ID";

View File

@@ -21,7 +21,7 @@ class RemoteActions extends BaseActions {
return 'Keymap entry not found for action: ${action.toString().splitByUpperCase()}';
}
if (!(actionHandler as RemoteActions).isConnected) {
if (!(actionHandler as RemoteActions).isConnected && !screenshotMode) {
return 'Not connected to a device';
}