This action updates or adds custom key/value pairs in the Info.plist file for your iOS projects.
Required The relative path for the Info.plist file.
Required A JSON string containing an array of key/value pairs.
Output the Info.plist file in console before and after update.
- name: Update iOS Plist
uses: dppeak/[email protected]
with:
info-plist-path: './path_to_your/Info.plist'
key-value-json: '[{"FirstCustomKey": "Some new Value"}, {"SecondCustomKey": "Another Value"}]'
print-file: true