We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01b7e59 commit ad48debCopy full SHA for ad48deb
.github/workflows/main.yml
@@ -82,7 +82,16 @@ jobs:
82
83
- name: Export
84
run: xcodebuild -exportArchive -archivePath $XC_ARCHIVE -exportOptionsPlist ExportOptions.plist -exportPath . -allowProvisioningUpdates
85
-
+
86
+ - name: Bump build number
87
+ run: |
88
+ PLIST_PATH="./Wable-iOS/Resource/Info.plist"
89
90
+ CURRENT_BUILD_NUMBER=$(/usr/libexec/PlistBuddy -c "Print :CFBundleVersion" "$PLIST_PATH")
91
+ NEW_BUILD_NUMBER=$((CURRENT_BUILD_NUMBER + 1))
92
93
+ /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $NEW_BUILD_NUMBER" "$PLIST_PATH"
94
95
- name: Upload app to TestFlight
96
uses: apple-actions/upload-testflight-build@v1
97
with:
0 commit comments