File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,22 @@ jobs:
3232 env :
3333 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3434
35- - name : Update project versions
36- id : version
35+ - name : Update package.json version
36+ id : package- version
3737 run : |
3838 echo "Next Version: ${{ steps.release.outputs.tag_name }}"
3939 npm version --git-tag-version=false --allow-same-version=true ${{ steps.release.outputs.tag_name }}
4040
41+ - name : Update IOS Info.plist versions
42+ id : ios-version
43+ uses : damienaicheh/update-ios-version-info-plist-action@v1.0.0
44+ with :
45+ info-plist-path : " ./ios/App/App/Info.plist"
46+ bundle-short-version-string : " ${{ steps.release.outputs.tag_name }}"
47+ bundle-version : " ${{ steps.release.outputs.tag_name }}"
48+
4149 - name : Commit Changes
4250 uses : stefanzweifel/git-auto-commit-action@v4
4351 with :
4452 commit_message : " chore(version): bump to ${{ steps.release.outputs.tag_name }}"
45- file_pattern : " package.json"
53+ file_pattern : " package.json ios/App/App/Info.plist "
You can’t perform that action at this time.
0 commit comments