Skip to content

Commit

Permalink
Add two new parameters to action definition and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Nov 12, 2020
1 parent e906be8 commit 1f7c63a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`).
Expand Down
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1f7c63a

Please sign in to comment.