From 1f7c63a65876ab84bc72e3522718361c3f4bc071 Mon Sep 17 00:00:00 2001 From: Florian Friedrich Date: Thu, 12 Nov 2020 17:00:47 +0100 Subject: [PATCH] Add two new parameters to action definition and README --- README.md | 8 ++++++++ action.yml | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 7a58f6f..fac0ac1 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,14 @@ A list of tests to skip. Whether unavailable actions should be skipped instead of failing the execution. See also `xcodebuild`'s `-skipUnavailableActions`. +### `allow-provisioning-updates` + +Whether provisioning updates are allowed. See also `xcodebuild`'s `-allowProvisioningUpdates`. + +### `allow-provisioning-device-registration` + +Whether provisioning device registrations are allowed. See also `xcodebuild`'s `-allowProvisioningDeviceRegistration`. + ### `build-settings` Arbitrary, space separated build settings (e.g. `PLATFORM_NAME=iphonesimulator`). diff --git a/action.yml b/action.yml index e97650f..9db5b41 100644 --- a/action.yml +++ b/action.yml @@ -68,6 +68,12 @@ inputs: skip-unavailable-actions: description: Whether unavailable actions should be skipped instead of failing the execution. See also `xcodebuild`'s `-skipUnavailableActions`. required: false + allow-provisioning-updates: + description: Whether provisioning updates are allowed. See also `xcodebuild`'s `-allowProvisioningUpdates`. + required: false + allow-provisioning-device-registration: + description: Whether provisioning device registrations are allowed. See also `xcodebuild`'s `-allowProvisioningDeviceRegistration`. + required: false build-settings: description: Arbitrary, space separated build settings (e.g. PLATFORM_NAME=iphonesimulator). required: false