Skip to content
file

GitHub Action

Update iOS bundle identifier

v1.0.0 Latest version

Update iOS bundle identifier

file

Update iOS bundle identifier

Update iOS bundle identifier of your Info.plist file

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Update iOS bundle identifier

uses: damienaicheh/[email protected]

Learn more about this action in damienaicheh/update-ios-bundle-identifier-action

Choose a version

Update iOS bundle identifier action

This action update the CFBundleIdentifier, CFBundleName and CFBundleDisplayName properties of the Info.plist file for your iOS projects.

Inputs

info-plist-path

Required The relative path for the Info.plist file.

bundle-identifier

Required The value of the new CFBundleIdentifier.

bundle-name

The value of the new CFBundleName.

bundle-display-name

The value of the new CFBundleDisplayName.

print-file

Output the Info.plist file in console before and after update.

Usage

- 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