Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
file

GitHub Action

Update iOS version Info.plist

v1.0.0

Update iOS version Info.plist

file

Update iOS version Info.plist

Update the Info.plist file

Installation

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

              

- name: Update iOS version Info.plist

uses: damienaicheh/[email protected]

Learn more about this action in damienaicheh/update-ios-version-info-plist-action

Choose a version

Update iOS version Info.plist action

This action update the BundleShortVersionString and BundleVersion properties of the Info.plist file for your iOS projects.

Inputs

info-plist-path

Required The relative path for the Info.plist file.

bundle-short-version-string

Required The CF Bundle Short Version String.

bundle-version

Required The CF Bundle Version.

print-file

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

Usage

- name: Update Info.plist
  uses: damienaicheh/[email protected]
  with:
    info-plist-path: './path_to_your/Info.plist'
    bundle-short-version-string: '2.0'
    bundle-version: '2'
    print-file: true