Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ Output path of ipa. Default `"output.ipa"`.

**Required** Team name.

### `build-xcargs`

Pass additional arguments to xcodebuild for the build phase. Be sure to quote the setting names and values e.g.` OTHER_LDFLAGS="-ObjC -lstdc++"`, `"-skipPackagePluginValidation -skipMacroValidation"`

### `build-pods`

Run the `pod install` command during the build (boolean)
Expand Down Expand Up @@ -129,6 +133,7 @@ If you have any other inputs you'd like to add, feel free to create PR.
with:
upload-to-testflight: true
increment-build-number: true
build-xcargs: "-skipPackagePluginValidation -skipMacroValidation"
build-pods: true
pods-path: "ios/Podfile"
configuration: Release
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ inputs:
description: "Targets to be updated with mobileprovision, code signing identity, etc"
required: false
default: ""
build-xcargs:
description: "Pass additional arguments to xcodebuild for the build phase."
required: false
default: ""
build-pods:
description: "Boolean to tell if `pod install` should be run during build."
required: false
Expand Down
Loading