This action update the CFBundleIdentifier
, CFBundleName
and CFBundleDisplayName
properties of the Info.plist file for your iOS projects.
Required The relative path for the Info.plist file.
Required The value of the new CFBundleIdentifier.
The value of the new CFBundleName.
The value of the new CFBundleDisplayName.
Output the Info.plist file in console before and after update.
- name: Update Bundle identifier
uses: damienaicheh/[email protected]
with:
info-plist-path: './path_to_your/Info.plist'
bundle-identifier: 'com.mycompany.app'
bundle-name: 'Name'
bundle-display-name: 'New App'
print-file: true