Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienaicheh/update-ios-bundle-identifier-action
https://github.com/damienaicheh/update-ios-bundle-identifier-action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/damienaicheh/update-ios-bundle-identifier-action
- Owner: damienaicheh
- License: mit
- Created: 2021-05-18T06:04:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-18T06:15:01.000Z (over 3 years ago)
- Last Synced: 2024-10-28T07:22:03.115Z (2 months ago)
- Language: TypeScript
- Size: 53.7 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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
```yaml
- 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
```