Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 5 additions & 1 deletion 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 Expand Up @@ -99,5 +103,5 @@ inputs:
description: "The iOS application identifier; useful to sync a specific provisioning profile"
required: false
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
Loading