mirror of
https://github.com/jonasbark/swiftcontrol.git
synced 2026-02-18 00:17:40 +01:00
rebuild
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -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";
|
||||
|
||||
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user