Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienaicheh/update-ios-version-info-plist-action
https://github.com/damienaicheh/update-ios-version-info-plist-action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/damienaicheh/update-ios-version-info-plist-action
- Owner: damienaicheh
- License: mit
- Created: 2021-05-14T19:54:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T15:51:27.000Z (8 months ago)
- Last Synced: 2024-10-06T03:47:24.979Z (3 months ago)
- Language: TypeScript
- Size: 313 KB
- Stars: 10
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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`
The CF Bundle Short Version String.
### `bundle-version`
The CF Bundle Version.
### `print-file`
Output the Info.plist file in console before and after update.
## Usage
```yaml
- 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
```